xiaomusic/Dockerfile.runtime

16 lines
305 B
Docker
Raw Permalink Normal View History

2024-10-30 01:03:14 +00:00
FROM python:3.10-slim
2024-10-30 00:42:32 +00:00
ENV DEBIAN_FRONTEND=noninteractive
2024-10-30 01:03:14 +00:00
RUN apt-get update && apt-get install -y \
2024-10-30 01:25:29 +00:00
wget \
2024-10-30 01:50:22 +00:00
xz-utils \
2024-10-30 01:03:14 +00:00
libtiff6 \
libopenjp2-7 \
libxcb1 \
2024-12-14 14:12:49 +00:00
supervisor \
2024-10-30 01:03:14 +00:00
&& rm -rf /var/lib/apt/lists/*
2024-10-30 01:25:29 +00:00
WORKDIR /app
COPY install_dependencies.sh .
RUN bash install_dependencies.sh