diff --git a/Dockerfile b/Dockerfile index 5cf8638f..7aea5989 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,13 @@ RUN pip install --upgrade pip \ FROM python:${PYTHON_VERSION} AS runtime +RUN apt-get update \ + && apt-get install -y --no-install-recommends \ + libpq-dev \ + unixodbc-dev=2.* \ + libssl-dev=1.* \ + && apt-get clean + RUN useradd -ms /bin/sh doccano RUN mkdir /data \