mirror of
https://github.com/NoCLin/LightMirrors
synced 2025-12-16 14:10:27 +08:00
14 lines
213 B
Docker
14 lines
213 B
Docker
FROM python:3.11-alpine
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
|
|
RUN pip install -r /app/requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple/
|
|
|
|
WORKDIR /app
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["python", "server.py"]
|
|
|
|
|