We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a608827 commit b0ee31dCopy full SHA for b0ee31d
1 file changed
Dockerfile
@@ -1,15 +1,18 @@
1
FROM gcc:bullseye as build
2
3
-# Install dependencies
4
-RUN apt-get update && apt-get -y install \
5
- build-essential \
6
- libraptor2-dev \
7
- libserd-dev \
8
- autoconf \
9
- libtool \
10
- liblzma-dev \
11
- liblzo2-dev \
12
- zlib1g-dev
+# Install build dependencies
+RUN apt update; \
+ apt install -y --no-install-recommends \
+ autoconf \
+ build-essential \
+ liblzma-dev \
+ liblzo2-dev \
+ libraptor2-dev \
+ libserd-dev \
+ libtool \
13
+ zlib1g-dev \
14
+ ; \
15
+ rm -rf /var/lib/apt/lists/*;
16
17
WORKDIR /usr/local/src/hdt-cpp
18
COPY . .
0 commit comments