mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
9 lines
112 B
Docker
9 lines
112 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install requests
|
|
|
|
COPY neoreg.py .
|
|
|
|
CMD ["tail", "-f", "/dev/null"] |