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-12-06 11:20:44 +07:00

12 lines
185 B
Docker

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