Skip to content

Commit 4a10146

Browse files
[infra] chown
1 parent 01868cb commit 4a10146

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

infra/base-images/base-clang/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
FROM ossfuzz/base
2020
MAINTAINER mike.aizatsky@gmail.com
2121

22-
RUN mkdir /src /work
22+
RUN mkdir /src /work && chmod a+w /src /work
2323

2424
COPY checkout_build_install_llvm.sh /root/
2525
# Keep all steps in the same script to decrease the number of intermediate

infra/base-images/base-clang/checkout_build_install_llvm.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ cd /src/llvm/tools && git clone --depth 1 http://llvm.org/git/clang.git
2424
cd /src/llvm/projects && git clone --depth 1 http://llvm.org/git/compiler-rt.git
2525
cd /src/llvm/projects && git clone --depth 1 http://llvm.org/git/libcxx.git
2626
cd /src/llvm/projects && git clone --depth 1 http://llvm.org/git/libcxxabi.git
27-
cd /src/llvm/projects && git clone --depth 1 http://llvm.org/git/lld.git
2827

2928
# Build & Install
3029
mkdir -p /work/llvm

infra/base-images/base-libfuzzer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ ENV COV_FLAGS="-fsanitize-coverage=edge,indirect-calls,8bit-counters"
2626
ENV ASAN_OPTIONS="symbolize=1:detect_leaks=0"
2727
ENV FUZZER_LDFLAGS "-Wl,-whole-archive /usr/local/lib/libc++.a /usr/local/lib/libc++abi.a -Wl,-no-whole-archive"
2828

29-
RUN mkdir /out
30-
VOLUME /out
29+
RUN mkdir /out && chmod a+w /out
3130

3231
RUN mkdir /src/bin
3332
COPY compile revisions run /src/bin/

0 commit comments

Comments
 (0)