fix Dockerfile COPY command (#6757)

This commit is contained in:
Navidem 2021-11-03 14:49:42 -05:00 committed by GitHub
parent d92411cd2d
commit 176e32b9c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ COPY build.sh $SRC/
EXTERNAL_DOCKER_TEMPLATE = """\
FROM gcr.io/oss-fuzz-base/%(base_builder)s:v1
RUN apt-get update && apt-get install -y make autoconf automake libtool
RUN COPY . $SRC/%(project_name)s
COPY . $SRC/%(project_name)s
WORKDIR %(project_name)s
COPY .clusterfuzzlite/build.sh $SRC/
"""