ActionsDockerContainers/OpenVSCodeServer/Dockerfile
SeaswimmerTheFsh cfddfcc8d1
All checks were successful
Docker Build / Build SeaCogs (push) Successful in 8s
Docker Build / Build PyZipline (push) Successful in 7s
Docker Build / Build OpenVSCodeServer (push) Successful in 1m36s
fixed missing sudo in the openvscodeserver build
2024-01-27 09:12:45 -05:00

12 lines
246 B
Docker

FROM gitpod/openvscode-server:latest
# Install APT packages
RUN sudo apt-get update
RUN sudo apt-get install -y \
python3.11 \
python3.11-dev \
python3.11-venv \
python3-pip
# Install Poetry
RUN python3.11 -m pip install poetry