xiaomusic/Dockerfile.runtime

15 lines
288 B
Docker
Raw 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 \
&& 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