Skip to content
Snippets Groups Projects
Dockerfile 314 B
Newer Older
Cédric Krier's avatar
Cédric Krier committed
FROM tryton/tryton:5.6
LABEL org.label-schema.version="5.6-office"

USER root

RUN apt-get update \
    && apt-get install -y --no-install-recommends \
        libreoffice-calc \
        libreoffice-draw \
        libreoffice-impress \
        libreoffice-writer \
    && rm -rf /var/lib/apt/lists/*

USER trytond