FROM python:3.14.4-slim

WORKDIR /app

RUN apt-get update && apt-get install -y \
	curl \
	exiftool \
	file \
	xxd \
	bsdmainutils \
	less \
	&& rm -rf /var/lib/apt/lists/*

RUN pip install pillow opencv-python-headless numpy scipy

COPY extractor.py .
COPY imv_fake.sh .
