aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/debugging.md2
-rw-r--r--docs/new_project_guide.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/debugging.md b/docs/debugging.md
index 10c3fe7d..4e97aadb 100644
--- a/docs/debugging.md
+++ b/docs/debugging.md
@@ -14,5 +14,5 @@ If you decide to debug a fuzzer with gdb (which is already installed in base-run
you will need to start a container in privileged mode:
```bash
-docker run -ti --privileged -v /tmp/out:/out gcr.io/oss-fuzz/base-runner-debug gdb /out/<fuzz_target_name>
+docker run -ti --privileged -v /tmp/out:/out gcr.io/oss-fuzz-base/base-runner-debug gdb /out/<fuzz_target_name>
```
diff --git a/docs/new_project_guide.md b/docs/new_project_guide.md
index b9cddbda..3226128a 100644
--- a/docs/new_project_guide.md
+++ b/docs/new_project_guide.md
@@ -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.
It is very simple for most projects:
```docker
-FROM gcr.io/oss-fuzz/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
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