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 34eeb47 commit 3d216d4Copy full SHA for 3d216d4
Dockerfile
@@ -243,6 +243,12 @@ RUN apt update && \
243
groupadd docker
244
245
246
+# Install BFG
247
+# https://rtyley.github.io/bfg-repo-cleaner/
248
+RUN mkdir --parents /opt/share && \
249
+ curl --location https://repo1.maven.org/maven2/com/madgag/bfg/1.15.0/bfg-1.15.0.jar --output /opt/share/bfg.jar
250
+
251
252
# Install Python packages
253
RUN pip3 install --no-cache-dir \
254
autopep8 \
@@ -260,7 +266,7 @@ RUN pip3 install --no-cache-dir \
260
266
"style50>2.10.0" \
261
267
"submit50<4" \
262
268
lib50
263
-
269
264
270
265
271
# Copy files to image
272
COPY ./etc /etc
0 commit comments