Adding Dockerfile

This commit is contained in:
2023-02-05 15:11:45 +01:00
parent f74409c9eb
commit 05da7a97e0
3 changed files with 127 additions and 213 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM rust:alpine as builder
WORKDIR /app
RUN apk add --no-cache musl-dev
# This should fetch the index and cache it. This should reduce subsequent builds
RUN cargo search test
COPY Cargo.toml Cargo.lock /app/
# COPY .cargo /app/.cargo
COPY src /app/src
RUN cargo build --release
FROM alpine
COPY --from=builder /app/target/release/rustocat /usr/bin/rustocat
ENTRYPOINT ["rustocat"]