Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python package updates #3385

Merged
merged 7 commits into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.6-slim
FROM python:3.10.12-slim

ARG USERNAME=vscode
ARG USER_UID=1000
Expand All @@ -20,7 +20,7 @@ RUN : INSTALL APT REQUIREMENTS \
make musl-dev openssh-client procps \
psmisc rsync ruby-full sudo tar \
unzip vim \
openjdk-11-jdk-headless \
openjdk-17-jre-headless \
&& apt-get -q autoremove -y \
&& apt-get -q clean -y \
&& rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -67,7 +67,7 @@ RUN : SETUP USER AND OTHERS \
&& setcap 'cap_net_bind_service=+ep' /usr/bin/ssh

RUN : SETUP JAVE_HOME
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-amd64/
ENV JAVA_HOME /usr/lib/jvm/java-17-openjdk-amd64/

RUN : SETUP EPICLI ALIAS \
&& echo alias epicli='"export PYTHONPATH=/workspaces/epiphany && python3 -m cli.epicli"' >> /etc/bash.bashrc
Loading