From 90f98631d8badf4bf6a934823ec0b4db72772744 Mon Sep 17 00:00:00 2001 From: Abhishek Arya Date: Sat, 24 Feb 2018 18:21:00 -0800 Subject: [PATCH] Fix deb package paths in open62541 --- projects/open62541/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/projects/open62541/Dockerfile b/projects/open62541/Dockerfile index 099ff0b80..12b739ff1 100644 --- a/projects/open62541/Dockerfile +++ b/projects/open62541/Dockerfile @@ -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