fixed missing sudo in the openvscodeserver build
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

This commit is contained in:
Seaswimmer 2024-01-27 09:12:45 -05:00
parent f82904efac
commit cfddfcc8d1
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -1,8 +1,8 @@
FROM gitpod/openvscode-server:latest FROM gitpod/openvscode-server:latest
# Install APT packages # Install APT packages
RUN apt-get update RUN sudo apt-get update
RUN apt-get install -y \ RUN sudo apt-get install -y \
python3.11 \ python3.11 \
python3.11-dev \ python3.11-dev \
python3.11-venv \ python3.11-venv \