fata-ignis-gladius / Dockerfile
zwv9's picture
Duplicate from zwv9/lux-tenebris-bellum
877dae9
raw
history blame contribute delete
No virus
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" ]