aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/hostap/Dockerfile
diff options
context:
space:
mode:
authorGravatar Marco Elver <elver@google.com>2020-04-24 16:25:57 +0200
committerGravatar GitHub <noreply@github.com>2020-04-24 07:25:57 -0700
commit61b6f42c72e8e8f2d8fd62b30bb5a7f9a3d10380 (patch)
treee499cda8858bf988280905b85172e930a7f19bbf /projects/hostap/Dockerfile
parente939fe3ced4e93c38cdefb402dc2e11ab9cbc2a9 (diff)
[hostap] Add missing libssl-dev dependency (#3673)
Recent builds have started failing due to libssl-dev missing -- presumably the base image no longer includes this. Fix this by installing libssl-dev.
Diffstat (limited to 'projects/hostap/Dockerfile')
-rw-r--r--projects/hostap/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/hostap/Dockerfile b/projects/hostap/Dockerfile
index 5d38a06e..cc215e96 100644
--- a/projects/hostap/Dockerfile
+++ b/projects/hostap/Dockerfile
@@ -16,7 +16,10 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER elver@google.com
-RUN apt-get update && apt-get install -y make autoconf automake libtool g++
+RUN dpkg --add-architecture i386 && \
+ apt-get update && \
+ apt-get install -y make autoconf automake libtool g++ libssl-dev \
+ libssl-dev:i386
RUN git clone --depth 1 git://w1.fi/srv/git/hostap.git hostap
WORKDIR hostap
COPY build.sh $SRC/