qqdd / Dockerfile
dfa32412's picture
Update Dockerfile
b8fbe7b verified
raw
history blame
231 Bytes
FROM node
run apt-get update && apt-get install git -y && apt-get install nginx -y
run git clone https://github.com/Rfym21/Qwen2API.git /app
WORKDIR /app
COPY . .
RUN chmod 777 /app
RUN npm i
EXPOSE 3000
CMD ["npm", "start"]