archive
/
tstatic
Archived
1
Fork 0

Remove reference to typings in docker file

This commit is contained in:
Jake Howard 2018-01-28 20:04:34 +00:00
parent b86ce01aa2
commit 38dcc3e5fa
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 1 additions and 3 deletions

View File

@ -4,15 +4,13 @@ RUN mkdir -p /public
COPY ./src /app/src
COPY ./package.json /app/package.json
COPY ./typings.json /app/typings.json
COPY ./package-lock.json /app/package-lock.json
COPY ./tsconfig.json /app/tsconfig.json
WORKDIR /app
RUN npm install
RUN node_modules/.bin/typings install
RUN npm run build
CMD npm start -- /public