mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-05-23 19:17:41 +08:00
15 lines
238 B
Docker
15 lines
238 B
Docker
# 设置基础镜像
|
|
FROM python:3.9
|
|
|
|
# 设置工作目录
|
|
WORKDIR /app
|
|
|
|
# 复制项目文件到工作目录
|
|
COPY . /app
|
|
|
|
# 安装依赖
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# 运行应用程序
|
|
CMD [ "python", "main.py" ]
|