소스 검색

.devcontainer/Dockerfile, don't remove ca-certificates because it's needed for "meteor npm install"

Martin Filser 3 년 전
부모
커밋
e7e1f1b667
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      .devcontainer/Dockerfile

+ 2 - 2
.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 bzip2 g++ build-essential git ca-certificates iproute2"
+ENV BUILD_DEPS="apt-utils apt-transport-https gnupg gosu libarchive-tools wget bzip2 g++ build-essential git 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} curl python3 \
+  && apt-get install --assume-yes --no-install-recommends ${BUILD_DEPS} curl python3 ca-certificates \
 
 # OLD:
 #  && curl -fsSLO --compressed "https://nodejs.org/dist/$NODE_VERSION/node-$NODE_VERSION-$ARCHITECTURE.tar.xz" \