Skip to content

Commit 083a0c1

Browse files
committed
Fikser cache (????)
1 parent 913020b commit 083a0c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ FROM node:20-alpine
33
WORKDIR /app
44

55
ENV NODE_ENV=production
6-
ENV PUPPETEER_CACHE_DIR=/tmp/puppeteer
6+
ENV PUPPETEER_CACHE_DIR=/app/puppeteer
77

88
COPY package*.json .env /app/
99
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 .cache/puppeteer /tmp/puppeteer/
13+
COPY .cache/puppeteer /app/puppeteer/
1414

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

0 commit comments

Comments
 (0)