FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install flask flask-restful
CMD ["python", "app.py"]