16 lines
305 B
Docker
16 lines
305 B
Docker
FROM python:3.10-slim
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
wget \
|
|
xz-utils \
|
|
libtiff6 \
|
|
libopenjp2-7 \
|
|
libxcb1 \
|
|
supervisor \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY install_dependencies.sh .
|
|
RUN bash install_dependencies.sh
|