Skip to content

Commit

Permalink
Update dependencies (#33)
Browse files Browse the repository at this point in the history
* Fixed sha512sum parameters.
  • Loading branch information
teddybeermaniac committed Jan 10, 2025
1 parent 11c495f commit edd70dd
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 @@ -19,7 +19,7 @@ ARG SU_EXEC_VERSION=0.2
WORKDIR /build
RUN wget -O "/build/su-exec-${SU_EXEC_VERSION}.tar.gz" "https://github.com/ncopa/su-exec/archive/refs/tags/v${SU_EXEC_VERSION}.tar.gz"
ADD su-exec.sha512sums /build/su-exec.sha512sums
RUN sha512sum -wc /build/su-exec.sha512sums && \
RUN sha512sum -c /build/su-exec.sha512sums && \
tar -xf "/build/su-exec-${SU_EXEC_VERSION}.tar.gz"

WORKDIR "/build/su-exec-${SU_EXEC_VERSION}"
Expand All @@ -38,7 +38,7 @@ WORKDIR /
RUN wget -O "/tini-${TINI_VERSION}.tar.gz" "https://github.com/krallin/tini/archive/refs/tags/v${TINI_VERSION}.tar.gz" && \
wget -O "/223.patch" "https://github.com/krallin/tini/commit/10479a6eef32f8e64fd5bf894dee9c7a6f21ce4c.patch"
ADD tini.sha512sums /tini.sha512sums
RUN sha512sum -wc /tini.sha512sums && \
RUN sha512sum -c /tini.sha512sums && \
tar -xf "/tini-${TINI_VERSION}.tar.gz" && \
patch -Np1 -d "/tini-${TINI_VERSION}" -i "/223.patch"

Expand Down

0 comments on commit edd70dd

Please sign in to comment.