blessed-rs/Dockerfile

13 lines
249 B
Docker
Raw Normal View History

2022-03-14 00:16:20 +00:00
FROM debian:buster-slim
2022-05-01 21:18:30 +00:00
EXPOSE 3333
2022-04-18 16:55:18 +00:00
COPY target/release/blessed-rs /usr/local/bin/blessed-rs
2022-04-18 17:37:14 +00:00
RUN chmod +x /usr/local/bin/blessed-rs
2022-03-14 00:16:20 +00:00
WORKDIR /usr/blessed-rs
COPY ./static ./static
COPY ./templates ./templates
COPY ./data ./data
2022-04-18 16:55:18 +00:00
CMD ["blessed-rs"]