Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -1
Dockerfile
CHANGED
@@ -4,7 +4,11 @@ FROM ubuntu:22.04
|
|
4 |
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
5 |
ENV PATH /opt/conda/bin:$PATH
|
6 |
|
7 |
-
RUN
|
|
|
|
|
|
|
|
|
8 |
apt install -y --no-install-recommends wget bzip2 unzip curl axel build-essential tar ca-certificates \
|
9 |
libglib2.0-0 libxext6 libsm6 libxrender1 && \
|
10 |
apt clean && \
|
|
|
4 |
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
|
5 |
ENV PATH /opt/conda/bin:$PATH
|
6 |
|
7 |
+
RUN apt-get update && \
|
8 |
+
apt-get install -y sudo && \
|
9 |
+
rm -rf /var/lib/apt/lists/*
|
10 |
+
|
11 |
+
RUN apt update && \
|
12 |
apt install -y --no-install-recommends wget bzip2 unzip curl axel build-essential tar ca-certificates \
|
13 |
libglib2.0-0 libxext6 libsm6 libxrender1 && \
|
14 |
apt clean && \
|