From ae970dcc3c8c89b3a080cca1842e7e2e045c73bf Mon Sep 17 00:00:00 2001 From: kreuzer <t.kreuzer@fz-juelich.de> Date: Tue, 29 Mar 2022 10:36:51 +0200 Subject: [PATCH] update apt install command --- venv/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/venv/Dockerfile b/venv/Dockerfile index 4ce5e59..c910ae9 100644 --- a/venv/Dockerfile +++ b/venv/Dockerfile @@ -1,5 +1,5 @@ FROM jupyter/base-notebook:hub-2.1.1 USER root ENV DEBIAN_FRONTEND noninteractive -RUN apt update && apt install -y curl +RUN apt-get update && apt-get install --no-install-recommends -y curl wget USER jovyan -- GitLab