FROM python:3.11-slim

WORKDIR /app

RUN pip install psycopg2-binary

COPY demo.py /app/demo.py

CMD ["python", "demo.py"]