Spaces:
Building
Building
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -38,9 +38,6 @@ RUN install -d -m 0755 /etc/apt/keyrings && \
|
|
38 |
apt-get update && \
|
39 |
apt-get install -y firefox
|
40 |
|
41 |
-
|
42 |
-
RUN yes | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
43 |
-
|
44 |
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
|
45 |
apt-get install -y nodejs && \
|
46 |
npm install -g configurable-http-proxy
|
@@ -67,7 +64,7 @@ RUN curl -sLo ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-py39
|
|
67 |
WORKDIR $HOME/app
|
68 |
|
69 |
USER root
|
70 |
-
|
71 |
RUN --mount=target=/root/packages.txt,source=packages.txt \
|
72 |
apt-get update && \
|
73 |
xargs -r -a /root/packages.txt apt-get install -y --no-install-recommends \
|
|
|
38 |
apt-get update && \
|
39 |
apt-get install -y firefox
|
40 |
|
|
|
|
|
|
|
41 |
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && \
|
42 |
apt-get install -y nodejs && \
|
43 |
npm install -g configurable-http-proxy
|
|
|
64 |
WORKDIR $HOME/app
|
65 |
|
66 |
USER root
|
67 |
+
RUN yes | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
|
68 |
RUN --mount=target=/root/packages.txt,source=packages.txt \
|
69 |
apt-get update && \
|
70 |
xargs -r -a /root/packages.txt apt-get install -y --no-install-recommends \
|