lux-tenebris-bellum / Dockerfile
zwv9's picture
Duplicate from zwv9/luna-nox-somnium
5ff92d6
raw
history blame
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" ]