1
0
Fork 0

dockerfile: attempt to use system OpenSSL

This commit is contained in:
liushuyu 2022-06-07 19:27:18 -06:00
parent 947c145a32
commit 75ab8e7c40
No known key found for this signature in database
GPG Key ID: 23D1CE4534419437
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ FROM debian:bullseye AS build
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
ARG USE_CCACHE ARG USE_CCACHE
RUN apt-get update && apt-get -y full-upgrade && \ RUN apt-get update && apt-get -y full-upgrade && \
apt-get install -y build-essential wget git ccache cmake ninja-build apt-get install -y build-essential wget git ccache cmake ninja-build libssl-dev
COPY . /root/build-files COPY . /root/build-files