mirror of
https://github.com/soxoj/maigret.git
synced 2026-05-06 14:08:59 +00:00
19 lines
529 B
Docker
19 lines
529 B
Docker
FROM python:3.11-slim
|
|
LABEL maintainer="Soxoj <soxoj@protonmail.com>"
|
|
WORKDIR /app
|
|
RUN pip install --no-cache-dir --upgrade pip
|
|
RUN apt-get update && \
|
|
apt-get install --no-install-recommends -y \
|
|
gcc \
|
|
musl-dev \
|
|
libxml2 \
|
|
libxml2-dev \
|
|
libxslt-dev \
|
|
&& \
|
|
rm -rf /var/lib/apt/lists/* /tmp/*
|
|
COPY . .
|
|
RUN YARL_NO_EXTENSIONS=1 python3 -m pip install --no-cache-dir .
|
|
# For production use, set FLASK_HOST to a specific IP address for security
|
|
ENV FLASK_HOST=0.0.0.0
|
|
ENTRYPOINT ["maigret"]
|