TrelloBot/Dockerfile
Simon 4e51dafdc0
All checks were successful
continuous-integration/drone/push Build is passing
Initial commit
2020-04-29 15:54:12 +02:00

9 lines
No EOL
197 B
Docker

FROM node:14.0
ENV NODE_ENV dev
WORKDIR /usr/src/app
COPY package*.json ./
COPY .auth.example ./.auth
COPY conf.json.example ./conf.json
RUN npm install --production --silent
COPY . .
CMD npm start