pacco/Dockerfile
JMARyA 7d774db363
All checks were successful
ci/woodpecker/push/build Pipeline was successful
docker
2025-04-16 08:20:23 +02:00

18 lines
310 B
Docker

FROM rust:buster as builder
RUN rustup default nightly
COPY . /app
WORKDIR /app
RUN cargo build --release
FROM archlinux
RUN pacman -Syu --noconfirm openssl-1.1 tar xz zstd curl base-devel git rsync
COPY --from=builder /app/target/release/pacco /pacco
WORKDIR /
CMD ["/pacco", "serve", "/config.toml"]