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-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"]