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