Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile-alpine-perl.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM nginx:%%NGINX_VERSION%%-alpine

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:%%NGINX_VERSION%%-alpine"

RUN set -x \
&& apkArch="$(cat /etc/apk/arch)" \
&& nginxPackages="%%PACKAGES%%
Expand Down
9 changes: 8 additions & 1 deletion Dockerfile-alpine-slim.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
FROM alpine:%%ALPINE_VERSION%%

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="%%NGINX_VERSION%%"
LABEL org.opencontainers.image.base.name="docker.io/library/alpine:%%ALPINE_VERSION%%"

ENV NGINX_VERSION %%NGINX_VERSION%%
ENV PKG_RELEASE %%PKG_RELEASE%%
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile-alpine.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM nginx:%%NGINX_VERSION%%-alpine-slim

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:%%NGINX_VERSION%%-alpine-slim"

ENV NJS_VERSION %%NJS_VERSION%%

RUN set -x \
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile-debian-perl.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
FROM nginx:%%NGINX_VERSION%%

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:%%NGINX_VERSION%%"

RUN set -x \
&& apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates \
Expand Down
9 changes: 8 additions & 1 deletion Dockerfile-debian.template
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
FROM debian:%%DEBIAN_VERSION%%-slim

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="%%NGINX_VERSION%%"
LABEL org.opencontainers.image.base.name="docker.io/library/debian:%%DEBIAN_VERSION%%-slim"

ENV NGINX_VERSION %%NGINX_VERSION%%
ENV NJS_VERSION %%NJS_VERSION%%
Expand Down
2 changes: 2 additions & 0 deletions mainline/alpine-perl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.23.3-alpine

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.23.3-alpine"

RUN set -x \
&& apkArch="$(cat /etc/apk/arch)" \
&& nginxPackages=" \
Expand Down
9 changes: 8 additions & 1 deletion mainline/alpine-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
#
FROM alpine:3.17

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="1.23.3"
LABEL org.opencontainers.image.base.name="docker.io/library/alpine:3.17"

ENV NGINX_VERSION 1.23.3
ENV PKG_RELEASE 1
Expand Down
2 changes: 2 additions & 0 deletions mainline/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.23.3-alpine-slim

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.23.3-alpine-slim"

ENV NJS_VERSION 0.7.9

RUN set -x \
Expand Down
2 changes: 2 additions & 0 deletions mainline/debian-perl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.23.3

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.23.3"

RUN set -x \
&& apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates \
Expand Down
9 changes: 8 additions & 1 deletion mainline/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
#
FROM debian:bullseye-slim

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="1.23.3"
LABEL org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim"

ENV NGINX_VERSION 1.23.3
ENV NJS_VERSION 0.7.9
Expand Down
2 changes: 2 additions & 0 deletions stable/alpine-perl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.22.1-alpine

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.22.1-alpine"

RUN set -x \
&& apkArch="$(cat /etc/apk/arch)" \
&& nginxPackages=" \
Expand Down
9 changes: 8 additions & 1 deletion stable/alpine-slim/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
#
FROM alpine:3.17

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="1.22.1"
LABEL org.opencontainers.image.base.name="docker.io/library/alpine:3.17"

ENV NGINX_VERSION 1.22.1
ENV PKG_RELEASE 1
Expand Down
2 changes: 2 additions & 0 deletions stable/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.22.1-alpine-slim

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.22.1-alpine-slim"

ENV NJS_VERSION 0.7.9

RUN set -x \
Expand Down
2 changes: 2 additions & 0 deletions stable/debian-perl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#
FROM nginx:1.22.1

LABEL org.opencontainers.image.base.name="docker.io/library/nginx:1.22.1"

RUN set -x \
&& apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates \
Expand Down
9 changes: 8 additions & 1 deletion stable/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
#
FROM debian:bullseye-slim

LABEL maintainer="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.title="nginx"
LABEL org.opencontainers.image.description="Official build of nginx for Docker."
LABEL org.opencontainers.image.url="https://www.nginx.org"
LABEL org.opencontainers.image.source="https://github.com/nginx/nginx"
LABEL org.opencontainers.image.documentation="https://nginx.org/en/docs"
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
LABEL org.opencontainers.image.version="1.22.1"
LABEL org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim"

ENV NGINX_VERSION 1.22.1
ENV NJS_VERSION 0.7.9
Expand Down