Remove reference to typings in docker file
This commit is contained in:
parent
b86ce01aa2
commit
38dcc3e5fa
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
|
Reference in a new issue