Files
2023-10-16 19:32:37 +08:00

13 lines
189 B
Plaintext

FROM python:latest
RUN pip install pycryptodome -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY flag.py /app/
COPY main.py /app/
WORKDIR /app
EXPOSE 10002
CMD [ "python", "main.py" ]