We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a69b32 commit 0e9ba66Copy full SHA for 0e9ba66
.github/workflows/build-and-deploy.yml
@@ -32,7 +32,7 @@ jobs:
32
run: npm ci
33
env:
34
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
35
- PUPPETEER_CACHE_DIR: '/puppeteer'
+ PUPPETEER_CACHE_DIR: '/tmp/puppeteer'
36
- name: Build application
37
run: npm run build
38
- name: Build and push docker image
Dockerfile
@@ -10,7 +10,7 @@ COPY node_modules /app/node_modules/
10
COPY server/dist /app/server/dist/
11
COPY server/package*.json /app/server/
12
COPY server/node_modules /app/server/node_modules/
13
-COPY puppeteer /tmp/puppeteer/
+COPY /tmp/puppeteer /tmp/puppeteer/
14
15
EXPOSE 3399
16
CMD ["npm", "run", "start"]
0 commit comments