Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -6,8 +6,9 @@ WORKDIR /app
|
|
6 |
COPY frontend .
|
7 |
|
8 |
RUN npm i
|
9 |
-
RUN npm
|
10 |
RUN ls -al
|
|
|
11 |
FROM python:3.10-slim AS backend
|
12 |
WORKDIR /app
|
13 |
|
|
|
6 |
COPY frontend .
|
7 |
|
8 |
RUN npm i
|
9 |
+
RUN npm run build
|
10 |
RUN ls -al
|
11 |
+
|
12 |
FROM python:3.10-slim AS backend
|
13 |
WORKDIR /app
|
14 |
|