mirror of
https://github.com/omg-xtao/gc-tools.git
synced 2024-11-21 22:58:25 +00:00
9 lines
198 B
Docker
9 lines
198 B
Docker
FROM node:16-slim
|
|
ADD . /booklist-react
|
|
WORKDIR /booklist-react
|
|
RUN npm install
|
|
RUN npm install -g serve
|
|
RUN npm run build
|
|
CMD ["npm","install","-g","serve"]
|
|
CMD ["serve", "-s", "build"]
|
|
EXPOSE 3000 |