cors-anywhere-docker/Dockerfile
Liam 407e6fd42b
All checks were successful
Publish Docker Images / docker (push) Successful in 26s
your mother
2023-11-21 12:59:08 +00:00

10 lines
242 B
Docker

FROM fascinated/docker-images:node-pnpm-latest
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY package*.json pnpm-lock.yaml ./
RUN pnpm install --production --silent && mv node_modules ../
COPY . .
EXPOSE 3000
CMD ["node", "src/index.js"]