archive
/
tstatic
Archived
1
Fork 0

Repair docker file and run in prod env

This commit is contained in:
Jake Howard 2018-03-21 11:28:30 +00:00
parent cc5d07595b
commit c74f486b7e
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 6 additions and 1 deletions

View File

@ -2,6 +2,10 @@ FROM node:8.10.0-alpine
RUN mkdir -p /public
ENV NODE_ENV production
RUN apk add --no-cache git
COPY ./src /app/src
COPY ./package.json /app/package.json
COPY ./package-lock.json /app/package-lock.json
@ -9,7 +13,8 @@ COPY ./tsconfig.json /app/tsconfig.json
WORKDIR /app
RUN npm install
RUN npm install --only=prod
RUN npm install --only=dev
RUN npm run build