Update Dockerfile

commented
This commit is contained in:
Pikachú 2024-08-19 17:07:36 +03:00 committed by GitHub
parent a850fa3440
commit a00890bfa0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -4,8 +4,8 @@ FROM mcr.microsoft.com/vscode/devcontainers/miniconda:0-3
ARG NODE_VERSION="none"
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
&& apt-get -y install libgl1
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
# && apt-get -y install libgl1
# Copy environment.yml (if found) to a temp location so we update the environment. Also
# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.