mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-07 07:22:42 +08:00
8 lines
172 B
Plaintext
8 lines
172 B
Plaintext
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt /requirements.txt
|
|
RUN python3 -m pip install -r /requirements.txt
|
|
COPY . /app
|
|
ENTRYPOINT [ "python3", "main.py" ]
|