0
0
Fork 0
mirror of https://git.verdigado.com/NB-Public/simple-wkd.git synced 2024-12-05 03:12:50 +01:00

Fix Dockerfile

This commit is contained in:
Delta1925 2023-04-16 19:19:21 +02:00
parent d4f4a35a65
commit f457350746
No known key found for this signature in database
GPG key ID: 1C21ACE44193CB25

View file

@ -1,6 +1,8 @@
FROM rust:1.68-alpine3.17 AS bin-builder
COPY backend .
COPY backend backend
COPY Cargo.lock .
COPY Cargo.toml .
RUN apk add --no-cache openssl-dev musl-dev
RUN cargo build --release