docker: Use buster instead of stable
This commit is contained in:
parent
dd2f509e69
commit
7f9b164b89
|
|
@ -1,5 +1,5 @@
|
||||||
# Native amd64
|
# Native amd64
|
||||||
FROM debian:stable-slim
|
FROM debian:buster-slim
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get --assume-yes \
|
apt-get --assume-yes \
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Native armhf
|
# Native armhf
|
||||||
FROM arm32v7/debian:stable-slim
|
FROM arm32v7/debian:buster-slim
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get --assume-yes \
|
apt-get --assume-yes \
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
# Build host is assumed to have "update-binfmts --enable qemu-arm"
|
# Build host is assumed to have "update-binfmts --enable qemu-arm"
|
||||||
|
|
||||||
# First get qemu-user-static for host...
|
# First get qemu-user-static for host...
|
||||||
FROM debian:stable-slim as host
|
FROM debian:buster-slim as host
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get --assume-yes \
|
apt-get --assume-yes \
|
||||||
install qemu-user-static
|
install qemu-user-static
|
||||||
|
|
||||||
# ...then build image for target with help of 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
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
COPY --from=host /usr/bin/qemu-arm-static /usr/bin/
|
COPY --from=host /usr/bin/qemu-arm-static /usr/bin/
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
# Native arm64
|
# Native arm64
|
||||||
FROM arm64v8/debian:stable-slim
|
FROM arm64v8/debian:buster-slim
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get --assume-yes \
|
apt-get --assume-yes \
|
||||||
|
|
|
||||||
|
|
@ -1,14 +1,14 @@
|
||||||
# Build host is assumed to have "update-binfmts --enable qemu-aarch64"
|
# Build host is assumed to have "update-binfmts --enable qemu-aarch64"
|
||||||
|
|
||||||
# First get qemu-user-static for host...
|
# First get qemu-user-static for host...
|
||||||
FROM debian:stable-slim as host
|
FROM debian:buster-slim as host
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get --assume-yes \
|
apt-get --assume-yes \
|
||||||
install qemu-user-static
|
install qemu-user-static
|
||||||
|
|
||||||
# ...then build image for target with help of 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
|
ENV DEBIAN_FRONTEND=noninteractive
|
||||||
COPY --from=host /usr/bin/qemu-aarch64-static /usr/bin/
|
COPY --from=host /usr/bin/qemu-aarch64-static /usr/bin/
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue