LAW-3131 dockerfile update

This commit is contained in:
g
2020-02-14 17:18:38 +03:00
parent 58b1d1bf23
commit 2e2b04a85e

View File

@@ -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