Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -13,6 +13,8 @@ RUN \
|
|
13 |
|
14 |
# Copy frontend source files after dependencies are installed
|
15 |
COPY frontend/ .
|
|
|
|
|
16 |
RUN npm run build
|
17 |
|
18 |
FROM python:3.10-slim AS backend
|
|
|
13 |
|
14 |
# Copy frontend source files after dependencies are installed
|
15 |
COPY frontend/ .
|
16 |
+
RUN npm install --save @huggingface/inference
|
17 |
+
|
18 |
RUN npm run build
|
19 |
|
20 |
FROM python:3.10-slim AS backend
|