Skip to content

Commit

Permalink
Added ca-certificates package to build process.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasilev committed Nov 29, 2024
1 parent c208901 commit 4d60c64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ COPY entrypoint.sh /sbin/entrypoint.sh
RUN export DEBIAN_FRONTEND=noninteractive \
&& chmod 755 /sbin/entrypoint.sh \
&& apt-get update \
&& apt-get install -y --no-install-recommends libpulse0 sudo wget xz-utils \
&& apt-get install -y --no-install-recommends libpulse0 sudo ca-certificates wget xz-utils \
&& apt-get install -y --no-install-recommends libasound2 libdbus-glib-1-2 libgtk2.0-0 libxrender1 libxt6 \
&& wget -O /tmp/palemoon.tar.xz 'https://www.palemoon.org/download.php?mirror=us&bits=64&type=linuxgtk2' \
&& tar -C /usr/local -xf /tmp/palemoon.tar.xz \
&& update-alternatives --install /usr/bin/palemoon palemoon /usr/local/palemoon/palemoon 80 \
&& apt-get remove -y wget xz-utils && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
&& apt-get remove -y ca-certificates wget xz-utils && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*


ENTRYPOINT ["/sbin/entrypoint.sh"]

0 comments on commit 4d60c64

Please sign in to comment.