diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3c43ef928..4f9d7ae9c 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="sgr" # - gyp does not yet work with Ubuntu 22.04 ubuntu:rolling, # so changing to 21.10. https://github.com/wekan/wekan/issues/4488 -ENV BUILD_DEPS="apt-utils apt-transport-https gnupg gosu libarchive-tools wget curl bzip2 g++ build-essential python3 git ca-certificates iproute2" +ENV BUILD_DEPS="apt-utils apt-transport-https gnupg gosu libarchive-tools wget bzip2 g++ build-essential git ca-certificates iproute2" ENV DEBIAN_FRONTEND=noninteractive ENV \ @@ -194,7 +194,7 @@ COPY \ RUN set -o xtrace \ && useradd --user-group --no-create-home --system --home-dir /home/wekan wekan \ && apt-get update \ - && apt-get install --assume-yes --no-install-recommends ${BUILD_DEPS} \ + && apt-get install --assume-yes --no-install-recommends ${BUILD_DEPS} curl python3 \ # OLD: # && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-$ARCHITECTURE.tar.xz" \