mirror of
https://github.com/nicoburns/blessed-rs
synced 2024-11-10 06:14:15 +00:00
13 lines
No EOL
249 B
Docker
13 lines
No EOL
249 B
Docker
FROM debian:buster-slim
|
|
EXPOSE 3333
|
|
|
|
COPY target/release/blessed-rs /usr/local/bin/blessed-rs
|
|
RUN chmod +x /usr/local/bin/blessed-rs
|
|
|
|
WORKDIR /usr/blessed-rs
|
|
COPY ./static ./static
|
|
COPY ./templates ./templates
|
|
COPY ./data ./data
|
|
|
|
|
|
CMD ["blessed-rs"] |