Adding CI and updating dependencies
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Fabian Stamm
2020-01-07 22:32:08 +01:00
parent 148acaadd1
commit 87e33a3bd0
6 changed files with 1146 additions and 8 deletions

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM node:12
LABEL maintainer="Fabian Stamm <dev@fabianstamm.de>"
RUN apt-get update
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY ["package.json", "package-lock.json", "/usr/src/app/"]
RUN npm install
COPY lib/ /usr/src/app/lib
VOLUME [ "/usr/src/app/logs", "/usr/src/app/persist"]
EXPOSE 3006/tcp
CMD ["npm", "run", "start"]