Skip to content

Commit f777137

Browse files
committed
pkg/docker: Update dockerfiles for 1.33.0
Signed-off-by: Andrew Clayton <[email protected]>
1 parent 15f7650 commit f777137

17 files changed

+229
-51
lines changed

pkg/docker/Dockerfile.go1.22

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM golang:1.22-bullseye
1+
FROM golang:1.22-bookworm
22

33
LABEL org.opencontainers.image.title="Unit (go1.22)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.go1.21 renamed to pkg/docker/Dockerfile.go1.23

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM golang:1.21-bullseye
1+
FROM golang:1.23-bookworm
22

3-
LABEL org.opencontainers.image.title="Unit (go1.21)"
3+
LABEL org.opencontainers.image.title="Unit (go1.23)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.jsc11

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.minimal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM debian:bullseye-slim
1+
FROM debian:bookworm-slim
22

33
LABEL org.opencontainers.image.title="Unit (minimal)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.node20

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:20-bullseye
1+
FROM node:20-bookworm
22

33
LABEL org.opencontainers.image.title="Unit (node20)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.node21 renamed to pkg/docker/Dockerfile.node22

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM node:21-bullseye
1+
FROM node:22-bookworm
22

3-
LABEL org.opencontainers.image.title="Unit (node21)"
3+
LABEL org.opencontainers.image.title="Unit (node22)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.perl5.38

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM perl:5.38-bullseye
1+
FROM perl:5.38-bookworm
22

33
LABEL org.opencontainers.image.title="Unit (perl5.38)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.perl5.36 renamed to pkg/docker/Dockerfile.perl5.40

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM perl:5.36-bullseye
1+
FROM perl:5.40-bookworm
22

3-
LABEL org.opencontainers.image.title="Unit (perl5.36)"
3+
LABEL org.opencontainers.image.title="Unit (perl5.40)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.php8.2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.2-cli-bullseye
1+
FROM php:8.2-cli-bookworm
22

33
LABEL org.opencontainers.image.title="Unit (php8.2)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

pkg/docker/Dockerfile.php8.3

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM php:8.3-cli-bullseye
1+
FROM php:8.3-cli-bookworm
22

33
LABEL org.opencontainers.image.title="Unit (php8.3)"
44
LABEL org.opencontainers.image.description="Official build of Unit for Docker."
55
LABEL org.opencontainers.image.url="https://unit.nginx.org"
66
LABEL org.opencontainers.image.source="https://github.com/nginx/unit"
77
LABEL org.opencontainers.image.documentation="https://unit.nginx.org/installation/#docker-images"
88
LABEL org.opencontainers.image.vendor="NGINX Docker Maintainers <[email protected]>"
9-
LABEL org.opencontainers.image.version="1.32.0"
9+
LABEL org.opencontainers.image.version="1.33.0"
1010

1111
RUN set -ex \
1212
&& savedAptMark="$(apt-mark showmanual)" \
@@ -15,7 +15,7 @@ RUN set -ex \
1515
&& mkdir -p /usr/lib/unit/modules /usr/lib/unit/debug-modules \
1616
&& mkdir -p /usr/src/unit \
1717
&& cd /usr/src/unit \
18-
&& git clone --depth 1 -b 1.32.0-1 https://github.com/nginx/unit \
18+
&& git clone --depth 1 -b 1.33.0-1 https://github.com/nginx/unit \
1919
&& cd unit \
2020
&& NCPU="$(getconf _NPROCESSORS_ONLN)" \
2121
&& DEB_HOST_MULTIARCH="$(dpkg-architecture -q DEB_HOST_MULTIARCH)" \

0 commit comments

Comments
 (0)