Skip to content

Commit 24a5c10

Browse files
authored
varnish: fix broken build (google#14777)
In the Dockerfile, when the COPY instruction is used to copy multiple files, the target path $SRC lacks the trailing slash /. This results in a syntax error. The solution is to add a slash at the end of the target path.
1 parent be6d6d7 commit 24a5c10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/varnish/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
FROM gcr.io/oss-fuzz-base/base-builder
1818
RUN apt-get update && apt install -y automake autoconf libtool pkg-config python3-docutils python3-sphinx libedit-dev libpcre2-dev libncurses-dev
1919
RUN git clone --depth 1 --recursive https://github.com/varnishcache/varnish-cache
20-
COPY run_tests.sh build.sh $SRC
20+
COPY run_tests.sh build.sh $SRC/
2121
WORKDIR $SRC/varnish-cache

0 commit comments

Comments
 (0)