From 7e78cffcaac0d1b6c8c9d634fc5ed57228ab788f Mon Sep 17 00:00:00 2001 From: Chosto Date: Thu, 2 Jul 2020 12:46:56 +0200 Subject: [PATCH] Bump Docker base images to buster flavor (#797) --- Dockerfile | 4 ++-- Dockerfile.dev | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 271ed6a8..e0bc20df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1-stretch as builder +FROM rust:1-buster as builder RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ @@ -28,7 +28,7 @@ RUN cargo install --path ./ --force --no-default-features --features postgres RUN cargo install --path plume-cli --force --no-default-features --features postgres RUN cargo clean -FROM debian:stretch-slim +FROM debian:buster-slim RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ diff --git a/Dockerfile.dev b/Dockerfile.dev index 2689595d..dd4c37e1 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -FROM rust:1-stretch +FROM rust:1-buster RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \