Skip to content

Commit

Permalink
Merge pull request #4044 from kskarthik/patch-1
Browse files Browse the repository at this point in the history
Trim extra layers in Dockerfile
  • Loading branch information
evilaliv3 authored Apr 16, 2024
2 parents 9137158 + f3b9502 commit 2f45eaf
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,16 @@ RUN apt-get update -q && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN wget https://deb.globaleaks.org/install-globaleaks.sh
RUN chmod +x install-globaleaks.sh
RUN ./install-globaleaks.sh -y -n
RUN wget https://deb.globaleaks.org/install-globaleaks.sh && \
chmod +x install-globaleaks.sh && \
./install-globaleaks.sh -y -n

RUN apt-get update -q && \
apt-get install -y globaleaks && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

EXPOSE 8080
EXPOSE 8443
EXPOSE 8080 8443

USER globaleaks

Expand Down

0 comments on commit 2f45eaf

Please sign in to comment.