node-event-bot/Dockerfile
mightypanders 180c467826
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
refactoring and adding capability to recognize more schedules
2022-04-13 21:38:59 +02:00

12 lines
213 B
Docker

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