6 lines
166 B
Docker
6 lines
166 B
Docker
FROM docker.io/nextcloud:27-apache
|
|
COPY config/ /usr/src/nextcloud/config/
|
|
COPY entrypoint.sh /usr/local/bin/
|
|
ENTRYPOINT ["entrypoint.sh"]
|
|
CMD ["apache2-foreground"]
|