2
0
mirror of https://github.com/thedevs-network/the-guard-bot synced 2025-08-22 01:49:29 +00:00
the-guard-bot/Dockerfile
Christian Romeni 6b5ed4ac47
Removed installation of git
@wojpawlik mentioned it would not be needed anymore.
2020-05-12 22:47:51 +02:00

12 lines
109 B
Docker

FROM node:alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
CMD npm start