Skip to content

Commit 2e5a064

Browse files
committed
use buster for image instead of stable as debian released a new version
1 parent 5f76344 commit 2e5a064

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Certbot Builder
33
#############
44

5-
FROM debian:stable-slim as certbotbuilder
5+
FROM debian:buster-slim as certbotbuilder
66

77
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
88

@@ -43,7 +43,7 @@ RUN pip install --no-cache-dir cffi certbot
4343
# Nginx Builder
4444
#############
4545

46-
FROM debian:stable-slim as nginxbuilder
46+
FROM debian:buster-slim as nginxbuilder
4747

4848
ARG OPENRESTY_VERSION
4949
ARG LUA_VERSION
@@ -73,13 +73,13 @@ RUN /tmp/build-openresty
7373
# Final Image
7474
#############
7575

76-
FROM debian:stable-slim
76+
FROM debian:buster-slim
7777
LABEL maintainer="Jamie Curnow <[email protected]>"
7878

7979
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
8080

8181
ARG TARGETPLATFORM
82-
RUN echo "Base: debian:stable-slim, ${TARGETPLATFORM:-linux/amd64}" > /built-for-arch
82+
RUN echo "Base: debian:buster-slim, ${TARGETPLATFORM:-linux/amd64}" > /built-for-arch
8383

8484
# OpenResty uses LuaJIT which has a dependency on GCC
8585
RUN apt-get update \

0 commit comments

Comments
 (0)