@ -9,10 +9,11 @@ COPY /src/ /app/src/
# add `/app/node_modules/.bin` to $PATH
ENV PATH /app/node_modules/.bin:$PATH
# install and cache app dependencies
COPY package.json /app/package.json
# make sure the packages are the same
COPY package-lock.json /app/package.json
RUN npm install
# start app