node-event-bot/Dockerfile
mightypanders 828a8e7445
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix start command for dockerfile
2022-03-06 18:20:15 +01:00

12 lines
229 B
Docker

FROM node:alpine as Build
ENV NODE_ENV=production
WORKDIR /app
COPY [ "yarn.lock", "package.json", "index.ts", "tsconfig.json", "./" ]
COPY server ./server
RUN yarn install --production
RUN yarn run build
CMD ["yarn","start"]