install pkg-config and libssl-dev (#6490)

This commit is contained in:
kaczmarczyck 2021-09-20 11:31:25 +02:00 committed by GitHub
parent 1c5c258a49
commit 052c88de73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@
#
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder-rust
RUN apt-get update && apt-get install -y make autoconf automake libtool curl cmake python llvm-dev libclang-dev clang uuid-runtime
RUN apt-get update && apt-get install -y make autoconf automake libtool curl \
cmake python llvm-dev libclang-dev clang uuid-runtime pkg-config libssl-dev
RUN git clone --depth=1 --branch=develop https://github.com/google/OpenSK && \
cd OpenSK && \