Files
gpodder-rs/Dockerfile
Matthew Pomes 8b0fa1d484
All checks were successful
Cargo Build & Test / Rust project - latest (stable) (push) Successful in 6m21s
Use local git checkout so compiled artifacts are available
2026-07-07 23:24:32 -05:00

13 lines
235 B
Docker

FROM alpine
WORKDIR /
COPY ./target/x86_64-unknown-linux-musl/release/gpodder-rs /gpodder-rs
COPY ./Rocket.toml /Rocket.toml
COPY ./templates /templates
VOLUME ["/data/"]
CMD ["/gpodder-rs"]
# ENTRYPOINT ["/bin/sh"]
EXPOSE 8000/tcp