mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-07-03 02:32:16 +08:00
15 lines
272 B
Docker
15 lines
272 B
Docker
FROM python:3.10-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./main.py .
|
|
COPY ./common ./common
|
|
COPY ./modules ./modules
|
|
COPY ./requirements.txt .
|
|
|
|
# ........., ....................., ......................
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ]
|