hoellen / dockerfiles

Dockerfiles
https://hub.docker.com/u/hoellen
Creative Commons Zero v1.0 Universal
36 stars 17 forks source link

Feature/add perl #36

Closed lexxxel closed 4 years ago

lexxxel commented 4 years ago

Some nextcloud apps require perl installed (e.g. raw previews with the issue.)

hoellen commented 4 years ago

I would rather not install any other packages that are required by 3rd party apps. Perl increases the docker image size by > 30 MB. That is 20% more than before and it's not needed from all users.

But you can add perl by yourself if you create a Dockerfile with the following content:

FROM hoellen/nextcloud:latest
RUN apk add perl

With that you have less maintenance. Just build the image to update your Nextcloud instance.