Files
gpodder-rs/Dockerfile
Matthew Pomes f859f8f34b
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 23s
Cargo Build & Test / Rust project - latest (beta) (push) Failing after 35s
Cargo Build & Test / Rust project - latest (nightly) (push) Failing after 33s
Add initial setup and admin page
2025-10-04 16:04:19 -05:00

11 lines
206 B
Docker

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