Dockerfile empty

This commit is contained in:
Marcus Netz
2020-11-21 21:59:54 +01:00
parent 0dafdfb91d
commit 07d5f2fdef

View File

@ -0,0 +1,15 @@
FROM node:latest
WORKDIR /usr/src/app
ARG NODE_ENV
ENV NODE_ENV $NODE_ENV
COPY package.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
# replace this with your application's default port
EXPOSE 3000
CMD [ "npm", "start" ]