1
1
Fork 0
mirror of https://github.com/pesde-pkg/pesde.git synced 2025-04-15 17:33:52 +01:00
pesde/Dockerfile
2024-05-05 21:31:21 +02:00

15 lines
283 B
Docker

FROM rust:1.77-bookworm AS builder
COPY . .
WORKDIR /registry
RUN cargo build --release
FROM debian:bookworm-slim
COPY --from=builder /target/release/pesde-registry /usr/local/bin/
RUN apt-get update && apt-get install -y ca-certificates
CMD ["/usr/local/bin/pesde-registry"]