Skip to content

Commit

Permalink
chore: security fix for CVE-2024-2511
Browse files Browse the repository at this point in the history
Fixes #41
  • Loading branch information
juancarlosjr97 committed Apr 10, 2024
1 parent f918a42 commit cf3cd64
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ ENV GIT_VERSION="2.43.0-r0"
# renovate: datasource=repology depName=alpine_3_19/gnupg versioning=loose
ENV GNUPG_VERSION="2.4.4-r0"

# renovate: datasource=repology depName=alpine_3_19/libcrypto3 versioning=loose
ENV LIBCRYPTO3_VERSION="3.1.4-r6"

# renovate: datasource=repology depName=alpine_3_19/libssl3 versioning=loose
ENV LIBSSL3_VERSION="3.1.4-r6"

# renovate: datasource=repology depName=alpine_3_19/openssh versioning=loose
ENV OPENSSH_VERSION="9.6_p1-r0"

Expand All @@ -21,6 +27,8 @@ RUN apk update && \
c-ares="${C_ARES_VERSION}" \
git="${GIT_VERSION}" \
gnupg="${GNUPG_VERSION}" \
libcrypto3="${LIBCRYPTO3_VERSION}" \
libssl3="${LIBSSL3_VERSION}" \
openssh="${OPENSSH_VERSION}"

WORKDIR /app
Expand All @@ -31,4 +39,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 cf3cd64

Please sign in to comment.