From a1c14687b87e86fb7e087d92ad81d8f93c4a9bce Mon Sep 17 00:00:00 2001 From: Timo Rothenpieler Date: Fri, 23 Aug 2024 17:39:41 +0200 Subject: [PATCH] Remove stray pip argument --- binder/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binder/Dockerfile b/binder/Dockerfile index f983a31..383a075 100644 --- a/binder/Dockerfile +++ b/binder/Dockerfile @@ -74,7 +74,7 @@ RUN ${PIP} install --no-cache-dir \ ARG EXTRA_PACKAGES=- RUN [ "${EXTRA_PACKAGES}" = "-" ] || \ - ${PIP} install --no-cache-dir --no-binary :all: --only-binary jupyterlab-pygments ${EXTRA_PACKAGES} + ${PIP} install --no-cache-dir --no-binary :all: ${EXTRA_PACKAGES} ARG BASE_TAG=latest FROM ghcr.io/oggm/empty_base:${BASE_TAG}