y / Dockerfile
yetey's picture
Create Dockerfile
9fa98b8 verified
FROM node:18
RUN git clone https://github.com/SuiYunsy/NextWeb
WORKDIR /NextWeb
RUN yarn install
RUN yarn build
ENV PORT 7860
CMD ["yarn", "start"]