Fix deb package paths in open62541

This commit is contained in:
Abhishek Arya 2018-02-24 18:21:00 -08:00 committed by GitHub
parent 359e2a27f2
commit 90f98631d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -18,10 +18,10 @@ FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER git@s.profanter.me
RUN apt-get update && apt-get install -y make cmake python-six wget
# We need libmbedtls > 2.5.1 otherwise it does not include the lib for static linking
RUN wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedtls-dev_2.6.0-1_amd64.deb && \
RUN wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedtls-dev_2.7.0-2_amd64.deb && \
wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedcrypto0_2.6.0-1_amd64.deb && \
wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedtls10_2.6.0-1_amd64.deb && \
wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedx509-0_2.6.0-1_amd64.deb && \
wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedtls10_2.7.0-2_amd64.deb && \
wget http://ftp.us.debian.org/debian/pool/main/m/mbedtls/libmbedx509-0_2.7.0-2_amd64.deb && \
dpkg -i *.deb
RUN git clone --depth 1 https://github.com/open62541/open62541.git -bmaster open62541
WORKDIR open62541