Build with crt-static
All checks were successful
/ Building (push) Successful in 2m52s

Smallest dockerfile possible

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2024-02-04 12:14:58 +05:30
parent a5d3f96a76
commit 6baac1ac79
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5

View file

@ -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