Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +6 -4
Dockerfile
CHANGED
@@ -6,15 +6,17 @@ EXPOSE 7860
|
|
6 |
|
7 |
RUN apt update
|
8 |
|
9 |
-
RUN apt
|
|
|
|
|
10 |
|
11 |
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
12 |
|
13 |
-
RUN apt install nodejs
|
14 |
|
15 |
-
RUN apt install neofetch
|
16 |
|
17 |
-
RUN apt install ffmpeg
|
18 |
|
19 |
RUN apt --yes install libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libasound2 libpangocairo-1.0-0 libxss1 libgtk-3-0
|
20 |
|
|
|
6 |
|
7 |
RUN apt update
|
8 |
|
9 |
+
RUN apt upgrade -y
|
10 |
+
|
11 |
+
RUN apt install curl -y
|
12 |
|
13 |
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
14 |
|
15 |
+
RUN apt install nodejs -y
|
16 |
|
17 |
+
RUN apt install neofetch -y
|
18 |
|
19 |
+
RUN apt install ffmpeg -y
|
20 |
|
21 |
RUN apt --yes install libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libgbm1 libasound2 libpangocairo-1.0-0 libxss1 libgtk-3-0
|
22 |
|