chatplugins / Dockerfile
wenjiao's picture
Update Dockerfile
b4ec485 verified
raw
history blame contribute delete
195 Bytes
FROM node:18
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/WenjiaoYue/test.git /test
WORKDIR /test/app
RUN npm install
EXPOSE 5173
CMD ["npm", "run", "dev"]