From 899dba27e8e043bf69b8ef2b95d28e9945cbaf11 Mon Sep 17 00:00:00 2001 From: Daniel Ceregatti Date: Tue, 29 Aug 2023 12:05:51 -0700 Subject: [PATCH] Remove gdb and strace, as we're no longer debugging in containers. Also remove python3-pip, as that's not needed here. --- server/Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/server/Dockerfile b/server/Dockerfile index dcfb4c3..87f24e2 100644 --- a/server/Dockerfile +++ b/server/Dockerfile @@ -12,7 +12,6 @@ RUN echo 'deb http://deb.debian.org/debian bullseye-backports main non-free' >> RUN apt-get update && apt-get -y upgrade && apt-get -y install --no-install-recommends \ curl \ ca-certificates \ - gdb \ git \ jq \ libsdl2-2.0-0 \ @@ -21,14 +20,9 @@ RUN apt-get update && apt-get -y upgrade && apt-get -y install --no-install-reco locales \ nano \ procps \ - python3-pip \ - strace \ wget \ xmlstarlet -RUN update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1 -RUN update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 - # Set the locale RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen ENV LANG en_US.UTF-8