19 lines
281 B
Docker
19 lines
281 B
Docker
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
|
|
|
|
# add app
|
|
COPY . ./
|
|
|
|
# start app
|
|
CMD ["npm", "start"]
|