From a00890bfa031657d9be304d560ca304d7f56f534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pikach=C3=BA?= Date: Mon, 19 Aug 2024 17:07:36 +0300 Subject: [PATCH] Update Dockerfile commented --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f9be646d..b5b0b708 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -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.