Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -6,7 +6,8 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|
| 6 |
# Core tools + Build Essentials
|
| 7 |
# -----------------------------
|
| 8 |
# Add apt-fast without interactive config
|
| 9 |
-
RUN
|
|
|
|
| 10 |
&& apt-get update \
|
| 11 |
&& DEBIAN_FRONTEND=noninteractive \
|
| 12 |
apt-get -y install apt-fast \
|
|
@@ -14,6 +15,7 @@ RUN add-apt-repository -y ppa:apt-fast/stable \
|
|
| 14 |
&& echo "MAXNUM=10" | tee -a /etc/apt-fast.conf \
|
| 15 |
&& echo "USE_PIGZ=1" | tee -a /etc/apt-fast.conf \
|
| 16 |
&& echo "APTFAST_PARA_OPTS=(--max-connection-per-server=12 --split=5)" | tee -a /etc/apt-fast.conf
|
|
|
|
| 17 |
|
| 18 |
RUN apt-fast update && apt-fast install -y \
|
| 19 |
curl wget git git-lfs unzip sudo nano bash apt-fast \
|
|
|
|
| 6 |
# Core tools + Build Essentials
|
| 7 |
# -----------------------------
|
| 8 |
# Add apt-fast without interactive config
|
| 9 |
+
RUN apt-get update && apt-get install -y software-properties-common \
|
| 10 |
+
&& add-apt-repository -y ppa:apt-fast/stable \
|
| 11 |
&& apt-get update \
|
| 12 |
&& DEBIAN_FRONTEND=noninteractive \
|
| 13 |
apt-get -y install apt-fast \
|
|
|
|
| 15 |
&& echo "MAXNUM=10" | tee -a /etc/apt-fast.conf \
|
| 16 |
&& echo "USE_PIGZ=1" | tee -a /etc/apt-fast.conf \
|
| 17 |
&& echo "APTFAST_PARA_OPTS=(--max-connection-per-server=12 --split=5)" | tee -a /etc/apt-fast.conf
|
| 18 |
+
|
| 19 |
|
| 20 |
RUN apt-fast update && apt-fast install -y \
|
| 21 |
curl wget git git-lfs unzip sudo nano bash apt-fast \
|