Enable very rudimentary CI/CD #1
1 changed files with 23 additions and 0 deletions
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
FROM rust:latest as builder
|
||||||
|
LABEL authors="karcsesz"
|
||||||
|
|
||||||
|
ARG target=x86_64-unknown-linux-musl
|
||||||
|
|
||||||
|
RUN apt update && apt install -y musl-tools musl-dev
|
||||||
|
RUN update-ca-certificates
|
||||||
|
RUN rustup target add $target
|
||||||
|
|
||||||
|
WORKDIR /fingerlink
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN cargo build --target $target --release
|
||||||
|
|
||||||
|
FROM scratch
|
||||||
|
|
||||||
|
WORKDIR /fingerlink
|
||||||
|
|
||||||
|
COPY --from=builder /fingerlink/target/x86_64-unknown-linux-musl/release/fingerlink /fingerlink/fingerlink
|
||||||
|
|
||||||
|
ENTRYPOINT ["/fingerlink/fingerlink", "serve"]
|
||||||
|
CMD ["--help"]
|
Loading…
Reference in a new issue