diff --git a/Dockerfile b/Dockerfile index 52c8ae8..28d6728 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,9 @@ RUN --mount=type=cache,target=/usr/src/app/target cargo install --path . FROM debian:buster-slim +# Install dependencies +RUN apt update && apt install -y openssl + COPY --from=builder /usr/local/cargo/bin/rust-api /usr/local/bin/rust-api CMD ["rust-api"]