From b56b35d0769f039132b6495538084821992c434e Mon Sep 17 00:00:00 2001 From: Lucas Briese Date: Wed, 26 Sep 2018 10:44:30 +0200 Subject: [PATCH] ~ temp fix, various problems with apt on my server --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4a71b0e..702d963 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,12 @@ COPY ["entrypoint.sh", "experimental.sh", "forceWorkshopDownload.sh", "installAn # removed dep. lib32gcc1 libtcmalloc-minimal4:i386 gdb RUN dpkg --add-architecture i386 && \ apt-get update -y && \ - apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 \ + apt-get install -f && \ + apt-get clean && \ + apt-get install -y mailutils postfix curl wget file bzip2 gzip unzip bsdmainutils python util-linux ca-certificates && \ + apt-get install -f && \ + apt-get clean && \ + apt-get install -y binutils bc jq tmux lib32gcc1 libstdc++6 libstdc++6:i386 lib32tinfo5 \ locales sudo && \ \ groupadd -g $GROUP_ID $DOCKER_USER && \