Adding missing package openssl

This commit is contained in:
godmodegalactus 2024-02-06 19:29:40 +01:00
parent 0acf82bb18
commit 064d87bb40
No known key found for this signature in database
GPG Key ID: 22DA4A30887FDA3C
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
FROM rust:1.73.0 as base
RUN cargo install cargo-chef --locked
RUN rustup component add rustfmt
RUN apt-get update && apt-get install -y clang libssl3 libssl-dev cmake ssh
RUN apt-get update && apt-get install -y clang libssl3 libssl-dev openssl cmake ssh
WORKDIR /app
FROM base AS plan