File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,17 @@ FROM codercom/code-server:4.3.0
22ARG PYTHON_VERSION=3.10
33ARG QUARTO_VERSION="0.9.287"
44
5+ USER root
6+
57# Install common softwares
6- RUN sudo apt-get -y update && \
7- curl -s https://raw.githubusercontent.com/InseeFrLab/onyxia/main/resources/common-software-docker-images.sh | sudo bash -s && \
8- sudo apt-get -y install cmake g++
8+ RUN apt-get -y update && \
9+ curl -s https://raw.githubusercontent.com/InseeFrLab/onyxia/main/resources/common-software-docker-images.sh | bash -s && \
10+ apt-get -y install cmake g++ && \
11+ rm -rf /var/lib/apt/lists/*
912
1013# Install QUARTO
1114RUN wget "https://github.com/quarto-dev/quarto-cli/releases/download/v${QUARTO_VERSION}/quarto-${QUARTO_VERSION}-linux-amd64.deb"
12- RUN sudo apt install "./quarto-${QUARTO_VERSION}-linux-amd64.deb"
15+ RUN apt install "./quarto-${QUARTO_VERSION}-linux-amd64.deb"
1316
1417# INSTALL MINICONDA -------------------------------
1518ARG CONDA_DIR=/home/coder/local/bin/conda
You can’t perform that action at this time.
0 commit comments