lx-music-api-server/Dockerfile
2023-12-15 14:45:53 +08:00

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