We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51b8b23 commit 1c4afb8Copy full SHA for 1c4afb8
.dockerignore
@@ -9,6 +9,7 @@
9
ci/Makefile
10
#ci/docker
11
**/Dockerfile
12
+**/Vagrantfile
13
ci/docs
14
ci/cache
15
ci/export
@@ -18,7 +19,10 @@ CONTRIBUTING.md
18
19
CONTRIBUTORS
20
LICENSE
21
README.md
-doc
22
+docs/
23
+tools/Makefile
24
+tools/export
25
+tools/**/*.Dockerfile
26
27
# Native cmake build
28
build/
ci/docker/debian/Dockerfile
@@ -5,7 +5,8 @@ FROM debian:unstable AS env
5
# Install system build dependencies
6
ENV PATH=/usr/local/bin:$PATH
7
RUN apt update -qq \
8
-&& apt install -yq git wget libssl-dev build-essential cmake \
+&& apt install -yq \
+ git wget libssl-dev build-essential cmake \
&& apt clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
0 commit comments