Files
flowsint/flowsint-api/Dockerfile
2025-04-23 00:48:28 +02:00

16 lines
293 B
Docker

FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt git+https://github.com/soxoj/maigret ghunt
RUN apt-get update && \
apt-get install -y git whois dnsutils curl && \
rm -rf /var/lib/apt/lists/*
EXPOSE 5000
ENTRYPOINT ["/app/entrypoint.sh"]