Update new_project_guide.md

This commit is contained in:
Abhishek Arya 2017-04-04 11:12:31 -07:00 committed by GitHub
parent 8b6b2b6840
commit b8b0894ad4
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ Example: [boringssl](https://github.com/google/oss-fuzz/blob/master/projects/bor
This file defines the Docker image definition. This is where the build.sh script will be executed in. This file defines the Docker image definition. This is where the build.sh script will be executed in.
It is very simple for most projects: It is very simple for most projects:
```docker ```docker
FROM gcr.io/oss-fuzz-base/base-builder # base image with clang toolchain FROM gcr.io/oss-fuzz-base/base-builder # base image with clang toolchain
MAINTAINER YOUR_EMAIL # maintainer for this file MAINTAINER YOUR_EMAIL # maintainer for this file
RUN apt-get install -y ... # install required packages to build your project RUN apt-get install -y ... # install required packages to build your project
RUN git clone <git_url> <checkout_dir> # checkout all sources needed to build your project RUN git clone <git_url> <checkout_dir> # checkout all sources needed to build your project