aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started
diff options
context:
space:
mode:
authordevtty1er <contact@devtty1er.com>2020-07-06 16:18:23 -0400
committerGitHub <noreply@github.com>2020-07-06 13:18:23 -0700
commitd561c49ae50bca355ce57b7c193d1d6001bbd5fb (patch)
treeda7efa992ae54443df778d2a120db7783c6ce5d8 /docs/getting-started
parentb74211ecf917a0d2fbec9b74d4baa59ab44a855a (diff)
downloadoss-fuzz-d561c49ae50bca355ce57b7c193d1d6001bbd5fb.tar.gz
Update Dockerfiles (#4070)
* Use LABEL in place of MAINTAINER * Remove LABEL maintainer from Dockerfiles
Diffstat (limited to 'docs/getting-started')
-rw-r--r--docs/getting-started/new_project_guide.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/getting-started/new_project_guide.md b/docs/getting-started/new_project_guide.md
index bcfce14f5..f47d70413 100644
--- a/docs/getting-started/new_project_guide.md
+++ b/docs/getting-started/new_project_guide.md
@@ -175,7 +175,6 @@ This configuration file defines the Docker image for your project. Your [build.s
For most projects, the image is simple:
```docker
FROM gcr.io/oss-fuzz-base/base-builder # base image with clang toolchain
-MAINTAINER YOUR_EMAIL # maintainer for this file
RUN apt-get update && apt-get install -y ... # install required packages to build your project
RUN go get ... # install dependencies to build your Go project
RUN git clone <git_url> <checkout_dir> # checkout all sources needed to build your project