fata-ignis-gladius / Dockerfile
tgi's picture
Duplicate from zwv9/fata-ignis-gladius
bed6b32
raw
history blame contribute delete
175 Bytes
FROM node:18
WORKDIR /usr/src/app
RUN git clone https://github.com/0zl/proxy-sv.git .
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 7860
CMD [ "node", "docker.js" ]