From 7c05d154801517f75ef100864be92c9b75f7091a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 15 Apr 2019 13:11:25 -0400 Subject: [PATCH] [libical] Make sure to do an apt update before apt install (#2319) --- projects/libical/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/libical/Dockerfile b/projects/libical/Dockerfile index a95e778a9..f7a4192b6 100644 --- a/projects/libical/Dockerfile +++ b/projects/libical/Dockerfile @@ -16,7 +16,7 @@ FROM gcr.io/oss-fuzz-base/base-builder MAINTAINER tsdgeos@gmail.com -RUN apt-get install --yes cmake +RUN apt-get update && apt-get install --yes cmake RUN git clone --depth 1 https://github.com/libical/libical.git COPY build.sh $SRC COPY libical_fuzzer.cc $SRC