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
2022-11-26 11:28:55 +07:00

13 lines
217 B
Docker

FROM ubi9/s2i-core:rhel9.1.0
USER node
WORKDIR /home/node/app
RUN mkdir .npm
RUN mkdir /home/node/.npm
COPY . .
RUN npm install
RUN npm run build
RUN npm run build:fontawesome
EXPOSE 5000
CMD ["npm", "run", "start"]