From 6d2f8a97af6f7e27e1d5a5645c334ecdce3816ea Mon Sep 17 00:00:00 2001 From: Martin Filser Date: Thu, 10 Jun 2021 22:28:03 +0200 Subject: [PATCH] Base Image of Development and Build are now the same - libarchive-tools contains bsdtar. bsdtar is needed for meteor installation, it doesn't / or didn't work with docker and overlayfs. see also here: https://github.com/jshimko/meteor-launchpad/issues/39 https://github.com/anchore/anchore-engine/issues/106 https://github.com/coreos/bugs/issues/1095 --- .devcontainer/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 734c132ed46..f8ea94911e3 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ -FROM debian +FROM quay.io/wekan/ubuntu:groovy-20210115 LABEL maintainer="sgr" -ENV BUILD_DEPS="gnupg gosu bsdtar wget curl bzip2 g++ build-essential python git ca-certificates iproute2" +ENV BUILD_DEPS="gnupg gosu libarchive-tools wget curl bzip2 g++ build-essential python git ca-certificates iproute2" ENV DEBIAN_FRONTEND=noninteractive ENV \