Skip to content

Commit 0af22c1

Browse files
authored
Merge pull request #179 from GrahamCampbell/upgrade-libsodium
Upgrade libsodium to 1.0.20
2 parents 534f3cb + a702ce4 commit 0af22c1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

php-80/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,11 +314,11 @@ RUN cmake --build . --target install
314314
# https://github.com/jedisct1/libsodium/releases
315315
# Needed by:
316316
# - php
317-
ENV VERSION_LIBSODIUM=1.0.19
317+
ENV VERSION_LIBSODIUM=1.0.20
318318
ENV LIBSODIUM_BUILD_DIR=${BUILD_DIR}/libsodium
319319
RUN set -xe; \
320320
mkdir -p ${LIBSODIUM_BUILD_DIR}; \
321-
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}.tar.gz \
321+
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}-RELEASE.tar.gz \
322322
| tar xzC ${LIBSODIUM_BUILD_DIR} --strip-components=1
323323
WORKDIR ${LIBSODIUM_BUILD_DIR}/
324324
RUN CFLAGS="" \

php-81/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,11 +315,11 @@ RUN cmake --build . --target install
315315
# https://github.com/jedisct1/libsodium/releases
316316
# Needed by:
317317
# - php
318-
ENV VERSION_LIBSODIUM=1.0.19
318+
ENV VERSION_LIBSODIUM=1.0.20
319319
ENV LIBSODIUM_BUILD_DIR=${BUILD_DIR}/libsodium
320320
RUN set -xe; \
321321
mkdir -p ${LIBSODIUM_BUILD_DIR}; \
322-
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}.tar.gz \
322+
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}-RELEASE.tar.gz \
323323
| tar xzC ${LIBSODIUM_BUILD_DIR} --strip-components=1
324324
WORKDIR ${LIBSODIUM_BUILD_DIR}/
325325
RUN CFLAGS="" \

php-82/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,11 +315,11 @@ RUN cmake --build . --target install
315315
# https://github.com/jedisct1/libsodium/releases
316316
# Needed by:
317317
# - php
318-
ENV VERSION_LIBSODIUM=1.0.19
318+
ENV VERSION_LIBSODIUM=1.0.20
319319
ENV LIBSODIUM_BUILD_DIR=${BUILD_DIR}/libsodium
320320
RUN set -xe; \
321321
mkdir -p ${LIBSODIUM_BUILD_DIR}; \
322-
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}.tar.gz \
322+
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}-RELEASE.tar.gz \
323323
| tar xzC ${LIBSODIUM_BUILD_DIR} --strip-components=1
324324
WORKDIR ${LIBSODIUM_BUILD_DIR}/
325325
RUN CFLAGS="" \

php-83/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,11 +315,11 @@ RUN cmake --build . --target install
315315
# https://github.com/jedisct1/libsodium/releases
316316
# Needed by:
317317
# - php
318-
ENV VERSION_LIBSODIUM=1.0.19
318+
ENV VERSION_LIBSODIUM=1.0.20
319319
ENV LIBSODIUM_BUILD_DIR=${BUILD_DIR}/libsodium
320320
RUN set -xe; \
321321
mkdir -p ${LIBSODIUM_BUILD_DIR}; \
322-
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}.tar.gz \
322+
curl -Ls https://github.com/jedisct1/libsodium/archive/${VERSION_LIBSODIUM}-RELEASE.tar.gz \
323323
| tar xzC ${LIBSODIUM_BUILD_DIR} --strip-components=1
324324
WORKDIR ${LIBSODIUM_BUILD_DIR}/
325325
RUN CFLAGS="" \

0 commit comments

Comments
 (0)