Files
nutshell/Dockerfile
Tim Bouma 2267fbe9a4 Postgres with Dockerfile changes (#148)
* added postgres support

* added libpq-dev
2023-03-19 15:07:44 +01:00

12 lines
403 B
Docker

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
COPY . .
RUN poetry config virtualenvs.create false
RUN poetry install --no-dev --no-root
EXPOSE 3338
CMD ["poetry", "run", "mint", "--port", "3338", "--host", "0.0.0.0"]