Postgres with Dockerfile changes (#148)

* added postgres support

* added libpq-dev
This commit is contained in:
Tim Bouma
2023-03-19 10:07:44 -04:00
committed by GitHub
parent 4784163a0e
commit 2267fbe9a4
2 changed files with 29 additions and 28 deletions

View File

@@ -1,6 +1,7 @@
FROM python:3.9-slim
RUN apt-get update
RUN apt-get install -y curl python3-dev autoconf g++
RUN apt-get install -y libpq-dev
RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH"
WORKDIR /app