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:19:26 +07:00

14 lines
216 B
Docker

FROM node:16
USER node
WORKDIR /home/node/app
COPY . .
RUN mkdir /home/node/
RUN npm install
RUN npm run build
RUN npm run build:fontawesome
EXPOSE 5000
RUN mkdir .npm
RUN mkdir /home/node/.npm
CMD ["npm", "start"]