.devcontainer/Dockerfile, don't remove curl/python3 because it's needed for "meteor npm"

This commit is contained in:
Martin Filser 2022-04-27 15:14:52 +02:00
parent b5b323000a
commit 7dc20616a7

View file

@ -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" \