Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +15 -0
Dockerfile
CHANGED
|
@@ -23,6 +23,21 @@ RUN mkdir -p maven && \
|
|
| 23 |
ENV PATH=/bin:$PATH
|
| 24 |
RUN wget https://raw.githubusercontent.com/coder/code-server/refs/heads/main/install.sh
|
| 25 |
RUN bash install.sh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
RUN chmod 777 -R /public
|
| 27 |
RUN chmod 777 ./usr/bin/code-server
|
| 28 |
EXPOSE 5000
|
|
|
|
| 23 |
ENV PATH=/bin:$PATH
|
| 24 |
RUN wget https://raw.githubusercontent.com/coder/code-server/refs/heads/main/install.sh
|
| 25 |
RUN bash install.sh
|
| 26 |
+
|
| 27 |
+
#PUPPETEER
|
| 28 |
+
RUN sudo apt-get install -y \
|
| 29 |
+
libxkbcommon0 \
|
| 30 |
+
libx11-xcb1 \
|
| 31 |
+
libatk1.0-0 \
|
| 32 |
+
libatk-bridge2.0-0 \
|
| 33 |
+
libcups2 \
|
| 34 |
+
libdrm2 \
|
| 35 |
+
libxcomposite1 \
|
| 36 |
+
libxdamage1 \
|
| 37 |
+
libxfixes3 \
|
| 38 |
+
libxrandr2 \
|
| 39 |
+
libgbm1 \
|
| 40 |
+
libasound2
|
| 41 |
RUN chmod 777 -R /public
|
| 42 |
RUN chmod 777 ./usr/bin/code-server
|
| 43 |
EXPOSE 5000
|