Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
|
@@ -1,17 +1,17 @@
|
|
| 1 |
FROM node:20-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
-
RUN git clone https://github.com/reaperofssa/banitaku.git /app
|
| 5 |
|
| 6 |
-
RUN apt update && \
|
| 7 |
-
apt install -y ffmpeg && \
|
| 8 |
-
apt clean && rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
-
RUN
|
| 11 |
|
| 12 |
RUN npm install express cors axios dotenv
|
| 13 |
|
| 14 |
RUN chmod -R 777 /app
|
| 15 |
|
| 16 |
EXPOSE 7860
|
|
|
|
| 17 |
CMD ["node", "index.js"]
|
|
|
|
| 1 |
FROM node:20-slim
|
| 2 |
|
| 3 |
WORKDIR /app
|
|
|
|
| 4 |
|
| 5 |
+
RUN apt-get update && \
|
| 6 |
+
apt-get install -y git ffmpeg && \
|
| 7 |
+
apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 8 |
|
| 9 |
+
RUN git clone https://github.com/reaperofssa/banitaku.git /app
|
| 10 |
|
| 11 |
RUN npm install express cors axios dotenv
|
| 12 |
|
| 13 |
RUN chmod -R 777 /app
|
| 14 |
|
| 15 |
EXPOSE 7860
|
| 16 |
+
|
| 17 |
CMD ["node", "index.js"]
|