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

11 lines
208 B
Docker
Raw Normal View History

2022-11-25 05:52:37 -05:00
FROM node:16
2022-11-25 05:27:36 -05:00
WORKDIR /usr/src/app
2022-11-25 21:47:30 -05:00
COPY package*.json /usr/src/app/
2022-11-25 05:47:09 -05:00
RUN npm install
COPY . /usr/src/app
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 22:09:52 -05:00
CMD ["npm", "start", "--loglevel=verbose"]
2022-11-25 05:27:36 -05:00