1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2025-12-06 14:52:50 +08:00
Files
xiaomusic/Dockerfile.builder
Moruy 5f944b8c5c feature: Migrate debian to alpine linux (#489)
* Update Dockerfile

change debian to alpine linux, reduce the image size by 50%

* Update Dockerfile.builder

change debian to alpine linux, reduce the image size by 50%

* Update Dockerfile.runtime

change debian to alpine linux, reduce the image size by 50%
2025-06-09 12:32:30 +08:00

11 lines
262 B
Ruby

FROM python:3.10.18-alpine3.22
RUN pip install -U pdm
ENV PDM_CHECK_UPDATE=false
WORKDIR /app
COPY pyproject.toml README.md .
COPY xiaomusic/ ./xiaomusic/
COPY plugins/ ./plugins/
COPY holiday/ ./holiday/
COPY xiaomusic.py .
RUN pdm install --prod --no-editable