diff --git a/Dockerfile b/Dockerfile index e8e72b1..db363a6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,25 @@ -FROM rust:bookworm as builder +FROM rust:alpine as builder + +RUN apk add musl-dev RUN mkdir /app WORKDIR /app +ARG RUSTFLAGS="-C target-feature=+crt-static" + COPY Cargo.toml /app COPY Cargo.lock /app COPY src /app/src COPY templates /app/templates -RUN cargo build --release -FROM gcr.io/distroless/cc-debian12:latest +RUN cargo build --release --target=x86_64-unknown-linux-musl + +RUN strip -s /app/target/x86_64-unknown-linux-musl/release/paste-frontend && \ + strip -R .comment -R .note -R .note.ABI-tag /app/target/x86_64-unknown-linux-musl/release/paste-frontend + +FROM scratch WORKDIR /app -COPY --from=builder /app/target/release/paste-frontend /app/paste-frontend +COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/paste-frontend /app/paste-frontend ADD templates /app/templates ADD static /app/static EXPOSE 8080