FROM python:3.12

RUN pip install psycopg2

COPY . /files
WORKDIR /files

ENTRYPOINT python3 todb.py
