rust-template/Dockerfile

17 lines
321 B
Text
Raw Normal View History

2023-09-12 22:00:49 +02:00
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}"]