Skip to content

Commit 3ce972c

Browse files
committed
docker: Add build arguments
1 parent 936b53b commit 3ce972c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Dockerfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
# syntax=docker/dockerfile:1
22

3-
FROM rust:1.85.0-bookworm AS builder
3+
ARG RUST_VERSION=1.85.0
4+
ARG DEBIAN_CODENAME=bookworm
5+
6+
FROM rust:${RUST_VERSION}-${DEBIAN_CODENAME} AS builder
47

58
COPY .git /app/.git
69
COPY Cargo.lock Cargo.toml /app/
710
COPY src/ /app/src/
811

912
RUN cargo build --release --manifest-path /app/Cargo.toml
1013

11-
FROM debian:bookworm
14+
FROM debian:${DEBIAN_CODENAME}
1215

1316
COPY --from=builder /app/target/release/fq /usr/local/bin/
1417

0 commit comments

Comments
 (0)