lx-music-api-server/Dockerfile
2023-12-02 09:48:29 +08:00

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" ]