Skip to content

Commit 8494677

Browse files
committed
Fikser cache dir (??)
1 parent 0e9ba66 commit 8494677

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/build-and-deploy.yml

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
run: npm ci
3333
env:
3434
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
35-
PUPPETEER_CACHE_DIR: '/tmp/puppeteer'
3635
- name: Build application
3736
run: npm run build
3837
- name: Build and push docker image

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY node_modules /app/node_modules/
1010
COPY server/dist /app/server/dist/
1111
COPY server/package*.json /app/server/
1212
COPY server/node_modules /app/server/node_modules/
13-
COPY /tmp/puppeteer /tmp/puppeteer/
13+
COPY .cache/puppeteer /tmp/puppeteer/
1414

1515
EXPOSE 3399
1616
CMD ["npm", "run", "start"]

0 commit comments

Comments
 (0)