Skip to content

Commit

Permalink
chore: updating image with fix for CVE-2024-25629
Browse files Browse the repository at this point in the history
Fixes #37
  • Loading branch information
juancarlosjr97 committed Mar 26, 2024
1 parent 9ce75c2 commit 5039d7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM docker.io/library/node:20.11.1-alpine3.19@sha256:121edf6661770d20483818426b
# renovate: datasource=repology depName=alpine_3_19/bash versioning=loose
ENV BASH_VERSION="5.2.21-r0"

# renovate: datasource=repology depName=alpine_3_19/c-ares versioning=loose
ENV C_ARES_VERSION="1.27.0-r0"

# renovate: datasource=repology depName=alpine_3_19/git versioning=loose
ENV GIT_VERSION="2.43.0-r0"

Expand All @@ -15,6 +18,7 @@ ENV OPENSSH_VERSION="9.6_p1-r0"
RUN apk update && \
apk add --no-cache \
bash="${BASH_VERSION}" \
c-ares="${C_ARES_VERSION}" \
git="${GIT_VERSION}" \
gnupg="${GNUPG_VERSION}" \
openssh="${OPENSSH_VERSION}"
Expand All @@ -27,4 +31,4 @@ COPY --chown=node release-it-entrypoint.sh /usr/local/bin/release-it-containeriz

ENTRYPOINT ["release-it-containerized"]

CMD ["sh"]
CMD ["sh"]

0 comments on commit 5039d7a

Please sign in to comment.