zwv9's picture
Duplicate from zwv9/stellis-caelum-orbis
11e1074
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" ]