Files
MemShellParty/assets/neoreg/Dockerfile
T

9 lines
157 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN pip install requests -i https://pypi.tuna.tsinghua.edu.cn/simple/
COPY neoreg.py .
CMD ["tail", "-f", "/dev/null"]