diff --git a/Dockerfile b/Dockerfile index 0a7359c..022e1f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Native amd64 -FROM debian:stable-slim +FROM debian:buster-slim ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ diff --git a/dockerfiles/Dockerfile.arm32v7 b/dockerfiles/Dockerfile.arm32v7 index fdddeb7..357fe81 100644 --- a/dockerfiles/Dockerfile.arm32v7 +++ b/dockerfiles/Dockerfile.arm32v7 @@ -1,5 +1,5 @@ # Native armhf -FROM arm32v7/debian:stable-slim +FROM arm32v7/debian:buster-slim ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ diff --git a/dockerfiles/Dockerfile.arm32v7-on-amd64 b/dockerfiles/Dockerfile.arm32v7-on-amd64 index ad74505..9770ecc 100644 --- a/dockerfiles/Dockerfile.arm32v7-on-amd64 +++ b/dockerfiles/Dockerfile.arm32v7-on-amd64 @@ -1,14 +1,14 @@ # Build host is assumed to have "update-binfmts --enable qemu-arm" # First get qemu-user-static for host... -FROM debian:stable-slim as host +FROM debian:buster-slim as host ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ install qemu-user-static # ...then build image for target with help of qemu-user-static -FROM arm32v7/debian:stable-slim +FROM arm32v7/debian:buster-slim ENV DEBIAN_FRONTEND=noninteractive COPY --from=host /usr/bin/qemu-arm-static /usr/bin/ RUN apt-get update && \ diff --git a/dockerfiles/Dockerfile.arm64v8 b/dockerfiles/Dockerfile.arm64v8 index 7607ec9..9cb1de7 100644 --- a/dockerfiles/Dockerfile.arm64v8 +++ b/dockerfiles/Dockerfile.arm64v8 @@ -1,5 +1,5 @@ # Native arm64 -FROM arm64v8/debian:stable-slim +FROM arm64v8/debian:buster-slim ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ diff --git a/dockerfiles/Dockerfile.arm64v8-on-amd64 b/dockerfiles/Dockerfile.arm64v8-on-amd64 index 7ba47f0..a298d6f 100644 --- a/dockerfiles/Dockerfile.arm64v8-on-amd64 +++ b/dockerfiles/Dockerfile.arm64v8-on-amd64 @@ -1,14 +1,14 @@ # Build host is assumed to have "update-binfmts --enable qemu-aarch64" # First get qemu-user-static for host... -FROM debian:stable-slim as host +FROM debian:buster-slim as host ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get --assume-yes \ install qemu-user-static # ...then build image for target with help of qemu-user-static -FROM arm64v8/debian:stable-slim +FROM arm64v8/debian:buster-slim ENV DEBIAN_FRONTEND=noninteractive COPY --from=host /usr/bin/qemu-aarch64-static /usr/bin/ RUN apt-get update && \