FROM python:3.12-slim WORKDIR /app COPY main.py /app/main.py RUN pip install flask EXPOSE 5000 CMD [ "python3", "main.py" ]