1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-04-14 20:53:41 +08:00
Files
xiaomusic/Dockerfile.base
2024-10-30 09:03:14 +08:00

13 lines
262 B
Docker

FROM python:3.10-slim
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /app
COPY install_dependencies.sh .
RUN bash install_dependencies.sh
RUN apt-get update && apt-get install -y \
libtiff6 \
libopenjp2-7 \
libxcb1 \
&& rm -rf /var/lib/apt/lists/*