You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
309 B
6 lines
309 B
# The following line will be rewritten by the custom builder
|
|
FROM docker.io/library/nextcloud
|
|
RUN set -ex \
|
|
&& apk add --no-cache ffmpeg samba-client \
|
|
&& touch /usr/local/etc/php/conf.d/redis-session.ini \
|
|
&& chmod 666 /usr/local/etc/php/conf.d/redis-session.ini # Overwritten by entrypoint.sh on startup
|
|
|