forked from projectmoon/tenebrous-dicebot
Add Dockerfile for self-contained deployment.
This commit is contained in:
parent
e4e2122d81
commit
2a90927760
|
@ -0,0 +1 @@
|
||||||
|
target/
|
|
@ -0,0 +1,12 @@
|
||||||
|
# Yoinked from:
|
||||||
|
# https://github.com/emk/rust-musl-builder/blob/master/examples/using-diesel/Dockerfile
|
||||||
|
FROM ekidd/rust-musl-builder:stable AS builder
|
||||||
|
ADD --chown=rust:rust . ./
|
||||||
|
RUN cargo build --release
|
||||||
|
|
||||||
|
FROM alpine:latest
|
||||||
|
RUN apk --no-cache add ca-certificates
|
||||||
|
COPY --from=builder \
|
||||||
|
/home/rust/src/target/x86_64-unknown-linux-musl/release/dicebot \
|
||||||
|
/usr/local/bin/
|
||||||
|
CMD /usr/local/bin/dicebot /config/dicebot-config.toml
|
Loading…
Reference in New Issue