archive
/
tstatic
Archived
1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
tstatic/Dockerfile

21 lines
306 B
Docker

FROM node:8-alpine
RUN mkdir -p /public
COPY ./src /app/src
COPY ./package.json /app/package.json
COPY ./typings.json /app/typings.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
EXPOSE 5000