gc-tools/Dockerfile

9 lines
186 B
Docker
Raw Normal View History

2022-04-30 06:49:35 +00:00
FROM node:18-slim
2022-04-30 06:35:16 +00:00
ADD . /gc_tools
WORKDIR /gc_tools
2022-04-30 06:31:57 +00:00
RUN npm install
RUN npm install -g serve
RUN npm run build
CMD ["npm","install","-g","serve"]
CMD ["serve", "-s", "build"]
EXPOSE 3000