From 2e2b04a85ed2123560b0a83351b1efe0d8606543 Mon Sep 17 00:00:00 2001 From: g <> Date: Fri, 14 Feb 2020 17:18:38 +0300 Subject: [PATCH] LAW-3131 dockerfile update --- Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2c004a5..00b80cb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ FROM python:3 -RUN apt-get install libreoffice +RUN apt-get update && \ + apt-get install -y software-properties-common + +RUN add-apt-repository -r ppa:libreoffice/ppa +RUN apt-get update +RUN apt-get -y install libreoffice COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt