Adding CI and making CI ready
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
20
Dockerfile
Normal file
20
Dockerfile
Normal file
@ -0,0 +1,20 @@
|
||||
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"]
|
||||
|
||||
CMD ["npm", "run", "start"]
|
Reference in New Issue
Block a user