1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-03-19 08:49:45 +08:00
Files
xiaomusic/Dockerfile.runtime
2025-06-10 15:13:02 +08:00

17 lines
277 B
Docker

FROM python:3.12-alpine3.22
RUN apk add --no-cache bash\
wget \
xz \
tiff \
openjpeg \
libxcb \
supervisor \
vim \
libc6-compat \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY install_dependencies.sh .
RUN bash install_dependencies.sh