mirror of
https://github.com/reconurge/flowsint.git
synced 2026-04-28 02:09:31 -05:00
16 lines
293 B
Docker
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"]
|