mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
9 lines
157 B
Docker
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"] |