Initial commit
This commit is contained in:
commit
96ff13057f
15 changed files with 806 additions and 0 deletions
16
Dockerfile
Normal file
16
Dockerfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
FROM rust:alpine as build
|
||||
|
||||
ENV RUSTFLAGS='-C target-feature=-crt-static'
|
||||
|
||||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN apk add --no-cache musl-dev
|
||||
RUN cargo install --path . -j $(nproc)
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=build /usr/local/cargo/bin/$REPO_NAME /app/$REPO_NAME
|
||||
WORKDIR /app
|
||||
RUN apk add --no-cache libgcc
|
||||
|
||||
CMD ["./${REPO_NAME}"]
|
Loading…
Add table
Add a link
Reference in a new issue