Spaces:
Runtime error
Runtime error
Upload Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -20,7 +20,8 @@ COPY --chown=node:node package*.json ./
|
|
20 |
|
21 |
# Install Node.js dependencies
|
22 |
RUN npm install
|
23 |
-
|
|
|
24 |
|
25 |
# Copy the application code to the working directory
|
26 |
COPY --chown=node:node . .
|
|
|
20 |
|
21 |
# Install Node.js dependencies
|
22 |
RUN npm install
|
23 |
+
# Also download new browser binaries and their dependencies:
|
24 |
+
RUN npx playwright install --with-deps
|
25 |
|
26 |
# Copy the application code to the working directory
|
27 |
COPY --chown=node:node . .
|