|
|
|
@ -4,16 +4,16 @@ FROM node:lts-alpine |
|
|
|
WORKDIR /app |
|
|
|
WORKDIR /app |
|
|
|
|
|
|
|
|
|
|
|
# get the sauce |
|
|
|
# get the sauce |
|
|
|
COPY /src/ /app/src/ |
|
|
|
COPY /client/src/ /app/src/ |
|
|
|
|
|
|
|
|
|
|
|
# add `/app/node_modules/.bin` to $PATH |
|
|
|
# add `/app/node_modules/.bin` to $PATH |
|
|
|
ENV PATH /app/node_modules/.bin:$PATH |
|
|
|
ENV PATH /app/node_modules/.bin:$PATH |
|
|
|
|
|
|
|
|
|
|
|
# make sure the packages are the same |
|
|
|
# make sure the packages are the same |
|
|
|
COPY package-lock.json /app/package.json |
|
|
|
COPY /client/package-lock.json /app/package.json |
|
|
|
|
|
|
|
|
|
|
|
# install and cache app dependencies |
|
|
|
# install and cache app dependencies |
|
|
|
COPY package.json /app/package.json |
|
|
|
COPY /client/package.json /app/package.json |
|
|
|
RUN npm install |
|
|
|
RUN npm install |
|
|
|
|
|
|
|
|
|
|
|
# start app |
|
|
|
# start app |
|
|
|
|