T1ckbase commited on
Commit
c3d9125
Β·
1 Parent(s): ff12de1
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -10,13 +10,13 @@ RUN chmod -R 777 /app
10
 
11
  ENV PLAYWRIGHT_BROWSERS_PATH=/app/node_modules/playwright/.local-browsers
12
 
13
- RUN deno install
14
 
15
  # Copy source
16
  COPY . .
17
 
18
  # Compile the main app
19
- # RUN deno cache main.ts
20
 
21
  RUN deno -A npm:playwright install --with-deps chromium
22
 
 
10
 
11
  ENV PLAYWRIGHT_BROWSERS_PATH=/app/node_modules/playwright/.local-browsers
12
 
13
+ # RUN deno install
14
 
15
  # Copy source
16
  COPY . .
17
 
18
  # Compile the main app
19
+ RUN deno cache main.ts
20
 
21
  RUN deno -A npm:playwright install --with-deps chromium
22