diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2019-11-20 18:24:50 +0300 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2019-11-20 18:24:50 +0300 |
commit | 9a7881d131767083fb095e0339c0ed788d998b05 (patch) | |
tree | 57dc5fa4ad6577cf622f30bab48109e56ee1a243 /pkg/docker/Dockerfile.python3.5 | |
parent | c87111cbb2356c186bd2433e525cd07f5f7618c5 (diff) | |
download | unit-9a7881d131767083fb095e0339c0ed788d998b05.tar.gz unit-9a7881d131767083fb095e0339c0ed788d998b05.tar.bz2 |
Regenerated Dockerfiles.
Diffstat (limited to '')
-rw-r--r-- | pkg/docker/Dockerfile.python3.7 (renamed from pkg/docker/Dockerfile.python3.5) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkg/docker/Dockerfile.python3.5 b/pkg/docker/Dockerfile.python3.7 index 831bc54a..c8264bde 100644 --- a/pkg/docker/Dockerfile.python3.5 +++ b/pkg/docker/Dockerfile.python3.7 @@ -1,8 +1,8 @@ -FROM debian:stretch-slim +FROM debian:buster-slim LABEL maintainer="NGINX Docker Maintainers <docker-maint@nginx.com>" -ENV UNIT_VERSION 1.13.0-1~stretch +ENV UNIT_VERSION 1.13.0-1~buster RUN set -x \ && apt-get update \ @@ -22,17 +22,17 @@ RUN set -x \ test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; \ apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* \ && dpkgArch="$(dpkg --print-architecture)" \ - && unitPackages="unit=${UNIT_VERSION} unit-python3.5=${UNIT_VERSION}" \ + && unitPackages="unit=${UNIT_VERSION} unit-python3.7=${UNIT_VERSION}" \ && case "$dpkgArch" in \ amd64|i386) \ # arches officialy built by upstream - echo "deb https://packages.nginx.org/unit/debian/ stretch unit" >> /etc/apt/sources.list.d/unit.list \ + echo "deb https://packages.nginx.org/unit/debian/ buster unit" >> /etc/apt/sources.list.d/unit.list \ && apt-get update \ ;; \ *) \ # we're on an architecture upstream doesn't officially build for # let's build binaries from the published source packages - echo "deb-src https://packages.nginx.org/unit/debian/ stretch unit" >> /etc/apt/sources.list.d/unit.list \ + echo "deb-src https://packages.nginx.org/unit/debian/ buster unit" >> /etc/apt/sources.list.d/unit.list \ \ # new directory for storing sources and .deb files && tempDir="$(mktemp -d)" \ |