Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +8 -1
Dockerfile
CHANGED
@@ -1 +1,8 @@
|
|
1 |
-
FROM docker.io/leafmoes/ddg-chat:latest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM docker.io/leafmoes/ddg-chat:latest
|
2 |
+
RUN npm ci --only=production
|
3 |
+
|
4 |
+
COPY . .
|
5 |
+
|
6 |
+
EXPOSE 8787
|
7 |
+
|
8 |
+
CMD ["npm", "start"]
|