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-25 17:27:36 +07:00

7 lines
91 B
Docker

FROM node:18
WORKDIR /usr/src/app
RUN npm install:clean
EXPOSE 5000
CMD ["npm", "start"]