From 5c5349b27f10c07e3d6cac7b35d3c025049f275c Mon Sep 17 00:00:00 2001 From: JMARyA Date: Sat, 12 Nov 2022 00:51:05 +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 0bec808..08ed3b3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust as builder +FROM rust:alpine as builder COPY . /app @@ -6,7 +6,7 @@ WORKDIR /app RUN cargo build --release -FROM archlinux +FROM alpine COPY --from=builder /app/target/release/me-site /bin/me-site