We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ADD
Dockerfile
1 parent 03e03bb commit 7e0c613Copy full SHA for 7e0c613
projects/neqo/Dockerfile
@@ -16,9 +16,10 @@
16
17
FROM gcr.io/oss-fuzz-base/base-builder-rust
18
19
-ADD https://github.com/nss-dev/nspr.git $SRC/nspr
20
-ADD https://github.com/nss-dev/nss.git $SRC/nss
21
-ADD https://github.com/mozilla/neqo.git $SRC/neqo
+RUN git clone --depth 1 https://github.com/nss-dev/nspr $SRC/nspr
+RUN git clone --depth 1 https://github.com/nss-dev/nss $SRC/nss
+RUN git clone --depth 1 https://github.com/mozilla/neqo $SRC/neqo
22
+RUN ls -l $SRC
23
24
RUN apt-get update && apt-get install -y --no-install-recommends \
25
libclang-dev gyp ninja-build python-is-python3 zlib1g-dev \
0 commit comments