mirror of
https://github.com/hanxi/xiaomusic.git
synced 2026-03-15 08:13:16 +08:00
17 lines
280 B
Docker
17 lines
280 B
Docker
FROM python:3.10.18-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
|