We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a59dd44 commit c9a38c9Copy full SHA for c9a38c9
Dockerfile
@@ -6,8 +6,12 @@ ARG VERSION
6
7
WORKDIR /build
8
9
-RUN apt-get update
10
-RUN apt-get install -y git clang cmake libsnappy-dev
+# RUN apt-get update
+# RUN apt-get install -y git clang cmake libsnappy-dev
11
+
12
+RUN apt-get update && \
13
+ apt-get install -y --no-install-recommends git clang cmake libsnappy-dev && \
14
+ rm -rf /var/lib/apt/lists/*
15
16
RUN git clone --branch $VERSION https://github.com/romanz/electrs .
17
0 commit comments