Bachelorthesis_Code/Dockerfile

20 lines
290 B
Docker
Raw Normal View History

2021-05-05 01:08:58 +00:00
FROM node:latest
# set working directory
WORKDIR /app
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install app dependencies
COPY package.json ./
COPY package-lock.json ./
RUN npm install --silent
# add app
COPY . ./
# start app
CMD ["npm", "start"]