bj / Dockerfile
BG5's picture
Update Dockerfile
bb0ef7f
raw
history blame contribute delete
171 Bytes
FROM node:18
RUN git clone https://github.com/Licoy/ChatGPT-Midjourney.git
WORKDIR "ChatGPT-Midjourney"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]