diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..0474830a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.12.8 + +# TODO: Do we need to add environment variables here? + +COPY requirements.txt requirements.txt +RUN pip3 install -r requirements.txt +RUN pip3 install "psycopg[binary,pool]" + +COPY . . \ No newline at end of file