monet / Dockerfile
mocobk's picture
Update Dockerfile
7b6df07
raw
history blame contribute delete
No virus
220 Bytes
FROM python:3.8-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["shadowproxy", "ss://chacha20:motest123@0.0.0.0:7860"]