From d02d0a9250a7f358c703f0d7c8ea54677f269645 Mon Sep 17 00:00:00 2001 From: Hironsan Date: Thu, 10 Feb 2022 12:31:23 +0900 Subject: [PATCH] Update Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) 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 \