Files
herald/Containerfile
T
qpismont 15f619ccf7
ci/woodpecker/push/tests Pipeline was successful
Move to multi crates project
Starting impl devcontainer spec
2026-07-31 20:06:37 +00:00

16 lines
272 B
Docker

FROM rust:1.97-trixie as builder
WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY crates/ crates/
RUN cargo build --release --package herald-server
FROM debian:trixie-slim
WORKDIR /app
COPY --from=builder /app/target/release/herald-server .
CMD [ "./herald-server" ]