From dcb97175d22ad69fb061e275c4c86860536929f6 Mon Sep 17 00:00:00 2001 From: JMARyA Date: Sat, 12 Nov 2022 00:54:55 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20drone?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 08ed3b3..48bbc2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:alpine as builder +FROM rust:buster as builder COPY . /app @@ -6,7 +6,7 @@ WORKDIR /app RUN cargo build --release -FROM alpine +FROM debian COPY --from=builder /app/target/release/me-site /bin/me-site