mirror of
https://github.com/MeoProject/lx-music-api-server.git
synced 2025-05-23 19:17:41 +08:00
9 lines
137 B
Docker
9 lines
137 B
Docker
FROM python:3.10.13-slim-bullseye
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN pip install --no-cache -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ] |