merasabkuch commited on
Commit
e74e389
·
verified ·
1 Parent(s): 7e0bd83

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- RUN npx install playwright
 
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 . .