aboutsummaryrefslogtreecommitdiff
path: root/infra/templates.py
diff options
context:
space:
mode:
authorKostya Serebryany <konstantin.s.serebryany@gmail.com>2017-05-01 23:32:10 -0700
committerGitHub <noreply@github.com>2017-05-01 23:32:10 -0700
commit7def2fceda70e7599d837437452ea256a8d7de71 (patch)
treef2ec8056a9782faaee0d9afcb356bc4bcd02ba6c /infra/templates.py
parent330386686d6e7b84e9fd927083d3d9cf681835b1 (diff)
downloadoss-fuzz-7def2fceda70e7599d837437452ea256a8d7de71.tar.gz
Update templates.py
Diffstat (limited to 'infra/templates.py')
-rwxr-xr-xinfra/templates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/templates.py b/infra/templates.py
index 1fc724fef..817fab2bb 100755
--- a/infra/templates.py
+++ b/infra/templates.py
@@ -38,7 +38,7 @@ DOCKER_TEMPLATE = """\
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER your@email.com
-RUN apt-get install -y make autoconf automake libtool
+RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN git clone --depth 1 <git_url> %(project_name)s # or use other version control
WORKDIR %(project_name)s
COPY build.sh $SRC/