mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-05-23 19:17:41 +08:00
10 lines
241 B
Docker
10 lines
241 B
Docker
FROM python:3.10.13-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
# 指定源, 如果后期源挂了, 更换个源就可以.
|
|
RUN pip install --no-cache -i https://pypi.mirrors.ustc.edu.cn/simple/ -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ] |