Skip to content

Commit

Permalink
Pinned versions
Browse files Browse the repository at this point in the history
  • Loading branch information
simao-silva committed Feb 1, 2024
1 parent d01d1c1 commit 427b7a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ ARG GECKODRIVER_VERSION="0.34.0-r0"
# renovate: datasource=repology depName=alpine_3_19/openssl versioning=loose
ARG OPENSSL_VERSION="3.1.4-r5"

RUN apk add --no-cache firefox && \
apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community geckodriver && \
RUN apk add --no-cache firefox=="${FIREFOX_VERSION}" && \
apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community geckodriver=="${GECKODRIVER_VERSION}" && \
ln -s /usr/bin/geckodriver /usr/local/bin/geckodriver && \
rm -rf /var/cache/apk/* /tmp/*

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ ARG FIREFOX_VERSION="115.7.0esr-1~deb12u1"

# Install required packages
RUN apt-get update && \
apt-get install -y --no-install-recommends firefox-esr && \
apt-get install -y --no-install-recommends firefox-esr=="${FIREFOX_VERSION}" && \
apt-get autoremove -y && \
apt-get clean && \
rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/* /usr/share/doc /usr/share/man
Expand Down

0 comments on commit 427b7a4

Please sign in to comment.