Smallest dockerfile possible Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
a5d3f96a76
commit
6baac1ac79
1 changed files with 12 additions and 4 deletions
16
Dockerfile
16
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
|
||||
|
|
Loading…
Reference in a new issue