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

25 lines
358 B
Docker
Raw Normal View History

2018-05-04 20:55:56 +01:00
FROM node:8-alpine
2018-01-26 19:56:43 +00:00
COPY ./src /app/src
COPY ./package.json /app/package.json
COPY ./package-lock.json /app/package-lock.json
2018-01-26 19:56:43 +00:00
COPY ./tsconfig.json /app/tsconfig.json
WORKDIR /app
2018-05-04 20:47:51 +01:00
RUN mkdir -p /public
RUN apk add --no-cache git
RUN npm install
ENV NODE_ENV production
2018-01-26 19:56:43 +00:00
RUN npm run build
2018-05-04 20:47:51 +01:00
RUN npm prune --production
2018-01-26 19:56:43 +00:00
CMD npm start -- /public
2018-01-28 11:10:42 +00:00
EXPOSE 5000