add openssl

This commit is contained in:
GroovieGermanikus 2024-06-25 21:02:39 +02:00
parent ff8677c8a1
commit d5c37b26c4
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# syntax = docker/dockerfile:1.2
FROM rust:1.76-bookworm as base
FROM rust:1.76-slim-bookworm as base
RUN cargo install cargo-chef@0.1.62 --locked
RUN rustup component add rustfmt
RUN apt-get update && apt-get install -y clang cmake ssh
RUN apt-get update && apt-get install -y clang cmake ssh ca-certificates libc6 libssl3 libssl-dev openssl
WORKDIR /app
FROM base AS plan