From 5c82d0f05e205430438e84af1b62a870ca6cf51b Mon Sep 17 00:00:00 2001 From: Cecile Tonglet Date: Thu, 28 Oct 2021 12:04:52 +0100 Subject: [PATCH] Fix docker images in Dockerfile (#124) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 779585d..cab34e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ -FROM rust:latest as build +FROM rust:bullseye as build COPY . /src RUN cargo install --path /src -FROM debian:buster +FROM debian:bullseye LABEL org.opencontainers.image.source https://github.com/deps-rs/deps.rs