Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -4,7 +4,8 @@ ENV DEBIAN_FRONTEND=noninteractive \
|
|
4 |
|
5 |
# Remove any third-party apt sources to avoid issues with expiring keys.
|
6 |
# Install some basic utilities
|
7 |
-
RUN
|
|
|
8 |
curl \
|
9 |
ca-certificates \
|
10 |
sudo \
|
@@ -21,7 +22,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
21 |
libx11-6 \
|
22 |
build-essential \
|
23 |
libsndfile-dev \
|
24 |
-
software-properties-common
|
|
|
25 |
|
26 |
RUN add-apt-repository ppa:flexiondotorg/nvtop && \
|
27 |
apt-get upgrade -y && \
|
|
|
4 |
|
5 |
# Remove any third-party apt sources to avoid issues with expiring keys.
|
6 |
# Install some basic utilities
|
7 |
+
RUN rm -f /etc/apt/sources.list.d/*.list && \
|
8 |
+
apt-get update && apt-get install -y --no-install-recommends \
|
9 |
curl \
|
10 |
ca-certificates \
|
11 |
sudo \
|
|
|
22 |
libx11-6 \
|
23 |
build-essential \
|
24 |
libsndfile-dev \
|
25 |
+
software-properties-common \
|
26 |
+
&& rm -rf /var/lib/apt/lists/*
|
27 |
|
28 |
RUN add-apt-repository ppa:flexiondotorg/nvtop && \
|
29 |
apt-get upgrade -y && \
|