Files
gpodder-rs/Dockerfile

12 lines
234 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