This repository has been archived on 2023-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ocp-wg-frontend/Dockerfile
2022-11-26 10:46:13 +07:00

12 lines
233 B
Docker

FROM node:16
USER node
WORKDIR /home/node/app
COPY --chown=node:node package*.json ./
COPY --chown=node:node . .
RUN npm install
RUN npm run build
RUN npm run build:fontawesome
EXPOSE 5000
CMD ["npm", "start", "--loglevel=verbose"]