This repository has been archived on 2023-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
ocp-wg-frontend/Dockerfile

13 lines
202 B
Docker
Raw Normal View History

2022-11-25 23:34:07 -05:00
FROM node:lts
USER node
WORKDIR /home/node/app
2022-11-25 23:28:55 -05:00
RUN mkdir .npm
RUN mkdir /home/node/.npm
2022-11-25 23:19:26 -05:00
COPY . .
2022-11-25 05:47:09 -05:00
RUN npm install
2022-11-25 06:07:24 -05:00
RUN npm run build
RUN npm run build:fontawesome
2022-11-25 05:27:36 -05:00
EXPOSE 5000
2022-11-25 23:28:55 -05:00
CMD ["npm", "run", "start"]
2022-11-25 05:27:36 -05:00