FROM python:3.10-slim
RUN pip install numpy redis pillow
COPY dataset.py /app/dataset.py
CMD ["python3", "/app/dataset.py"]