-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
60 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ FROM alpine:3.19 | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.25.5 | ||
ENV PKG_RELEASE 1 | ||
ENV NGINX_VERSION 1.27.0 | ||
ENV PKG_RELEASE 2 | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
@@ -56,16 +56,16 @@ RUN set -x \ | |
&& su nobody -s /bin/sh -c " \ | ||
export HOME=${tempDir} \ | ||
&& cd ${tempDir} \ | ||
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/27357d6c5453.tar.gz \ | ||
&& PKGOSSCHECKSUM=\"a80fc5706ad8e98597478b9e041f658375d53d22f7c8004dd16354067a3d48eb4ef234830b697ddf5c45ec57b837237cc11317bcaaa5133ccbe71bce15d969b0 *27357d6c5453.tar.gz\" \ | ||
&& if [ \"\$(openssl sha512 -r 27357d6c5453.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \ | ||
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \ | ||
&& PKGOSSCHECKSUM=\"cd3333f4dfa4a873f6df73dfe24e047adc092d779aefb46577b6307ff0d0125543508694a80158b2bfc891167ad763b0d08287829df9924d4c22f50d063e76c0 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \ | ||
&& if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \ | ||
echo \"pkg-oss tarball checksum verification succeeded!\"; \ | ||
else \ | ||
echo \"pkg-oss tarball checksum verification failed!\"; \ | ||
exit 1; \ | ||
fi \ | ||
&& tar xzvf 27357d6c5453.tar.gz \ | ||
&& cd pkg-oss-27357d6c5453 \ | ||
&& tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \ | ||
&& cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE} \ | ||
&& cd alpine \ | ||
&& make base \ | ||
&& apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
FROM nginx:1.25.5 | ||
FROM nginx:1.27.0 | ||
|
||
ENV OTEL_VERSION 0.1.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ FROM debian:bookworm-slim | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.25.5 | ||
ENV NGINX_VERSION 1.27.0 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 3~bookworm | ||
ENV PKG_RELEASE 1~bookworm | ||
ENV NJS_RELEASE 2~bookworm | ||
ENV PKG_RELEASE 2~bookworm | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ FROM alpine:3.19 | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.26.0 | ||
ENV PKG_RELEASE 1 | ||
ENV NGINX_VERSION 1.26.1 | ||
ENV PKG_RELEASE 2 | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
@@ -56,16 +56,16 @@ RUN set -x \ | |
&& su nobody -s /bin/sh -c " \ | ||
export HOME=${tempDir} \ | ||
&& cd ${tempDir} \ | ||
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/73d6839714a2.tar.gz \ | ||
&& PKGOSSCHECKSUM=\"95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db *73d6839714a2.tar.gz\" \ | ||
&& if [ \"\$(openssl sha512 -r 73d6839714a2.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \ | ||
&& curl -f -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \ | ||
&& PKGOSSCHECKSUM=\"0db2bf5f86e7c31f23d0e3e7699a5d8a4d9d9b0dc2f98d3e3a31e004df20206270debf6502e4481892e8b64d55fba73fcc8d74c3e0ddfcd2d3f85a17fa02a25e *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\" \ | ||
&& if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then \ | ||
echo \"pkg-oss tarball checksum verification succeeded!\"; \ | ||
else \ | ||
echo \"pkg-oss tarball checksum verification failed!\"; \ | ||
exit 1; \ | ||
fi \ | ||
&& tar xzvf 73d6839714a2.tar.gz \ | ||
&& cd pkg-oss-73d6839714a2 \ | ||
&& tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz \ | ||
&& cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE} \ | ||
&& cd alpine \ | ||
&& make base \ | ||
&& apk index -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# PLEASE DO NOT EDIT IT DIRECTLY. | ||
# | ||
FROM nginx:1.26.0 | ||
FROM nginx:1.26.1 | ||
|
||
ENV OTEL_VERSION 0.1.0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,10 @@ FROM debian:bookworm-slim | |
|
||
LABEL maintainer="NGINX Docker Maintainers <[email protected]>" | ||
|
||
ENV NGINX_VERSION 1.26.0 | ||
ENV NGINX_VERSION 1.26.1 | ||
ENV NJS_VERSION 0.8.4 | ||
ENV NJS_RELEASE 2~bookworm | ||
ENV PKG_RELEASE 1~bookworm | ||
ENV PKG_RELEASE 2~bookworm | ||
|
||
RUN set -x \ | ||
# create nginx user/group first, to be consistent throughout docker variants | ||
|
3180cdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://hub.docker.com/_/nginx/ doesn't show the new releases yet, did the push to dockerhub work?
3180cdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think this is a code related question. Please, raise an issue if you have problems with images.
3180cdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @Trolldemorted, the PR with the changes has been accepted a couple hours ago (docker-library/official-images#16868) and the builds are in progress and are getting published. See https://github.com/docker-library/faq?tab=readme-ov-file#an-images-source-changed-in-git-now-what for the details on the process.