docker: Use buster instead of stable

This commit is contained in:
Johan Gunnarsson 2019-05-22 22:20:58 +02:00
parent dd2f509e69
commit 7f9b164b89
5 changed files with 7 additions and 7 deletions

View File

@ -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 \

View File

@ -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 \

View File

@ -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 && \

View File

@ -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 \

View File

@ -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 && \