diff --git a/docker/Dockerfile b/docker/Dockerfile index c3b2610061..9f42bed907 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -3,20 +3,12 @@ FROM debian:12-slim RUN apt-get update -q && \ apt-get install -y wget lsb-release && \ apt-get dist-upgrade \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - -RUN wget https://deb.globaleaks.org/install-globaleaks.sh && \ + wget https://deb.globaleaks.org/install-globaleaks.sh && \ chmod +x install-globaleaks.sh && \ ./install-globaleaks.sh -y -n \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -RUN apt-get update -q && \ - apt-get install -y globaleaks && \ - apt-get clean && \ - rm -rf /var/lib/apt/lists/* - EXPOSE 8080 8443 USER globaleaks