Add a Dockerfile
This commit is contained in:
parent
f9d9a361c3
commit
4c028c0542
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM rust:1.56-alpine3.13 AS builder
|
||||
RUN apk update
|
||||
RUN apk add musl-dev
|
||||
ADD . .
|
||||
RUN cargo build --target=x86_64-unknown-linux-musl --release
|
||||
|
||||
FROM scratch
|
||||
COPY --from=builder target/x86_64-unknown-linux-musl/release/faery-ring /
|
||||
ENTRYPOINT ["/faery-ring"]
|
||||
CMD ["/domains.txt"]
|
Loading…
Reference in a new issue