terra-mare-caelum / Dockerfile
zwv9's picture
Duplicate from zwv9/fata-ignis-gladius
097f794
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" ]