@ -1,26 +0,0 @@
|
|||||||
FROM python:3.11-slim-buster
|
|
||||||
ARG BRANCH_NAME=master
|
|
||||||
ENV BRANCH_NAME ${BRANCH_NAME}
|
|
||||||
ENV TINI_VERSION v0.19.0
|
|
||||||
ENV KOMETA_DOCKER True
|
|
||||||
ENV KOMETA_LXML True
|
|
||||||
COPY requirements.txt requirements.txt
|
|
||||||
RUN sed -i -E "s/(lxml==).+/\15.1.1/" requirements.txt
|
|
||||||
RUN echo "**** install system packages ****" \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get upgrade -y --no-install-recommends \
|
|
||||||
&& apt-get install -y tzdata --no-install-recommends \
|
|
||||||
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev libjpeg62-turbo-dev zlib1g-dev wget curl \
|
|
||||||
&& wget -O /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-"$(dpkg --print-architecture | awk -F- '{ print $NF }')" \
|
|
||||||
&& chmod +x /tini \
|
|
||||||
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \
|
|
||||||
&& apt-get --purge autoremove gcc g++ libxml2-dev libxslt-dev libz-dev -y \
|
|
||||||
&& apt-get clean \
|
|
||||||
&& apt-get update \
|
|
||||||
&& apt-get check \
|
|
||||||
&& apt-get -f install \
|
|
||||||
&& apt-get autoclean \
|
|
||||||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* /var/lib/apt/lists/*
|
|
||||||
COPY . /
|
|
||||||
VOLUME /config
|
|
||||||
ENTRYPOINT ["/tini", "-s", "python3", "kometa.py", "--"]
|
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
Before Width: | Height: | Size: 145 KiB After Width: | Height: | Size: 145 KiB |
Before Width: | Height: | Size: 373 KiB After Width: | Height: | Size: 373 KiB |
Before Width: | Height: | Size: 374 KiB After Width: | Height: | Size: 374 KiB |