9 lines
144 B
Docker
9 lines
144 B
Docker
|
FROM nextcloud:19
|
||
|
|
||
|
# Prepare Entrypoint Script
|
||
|
ADD resources /tmp
|
||
|
RUN /tmp/install.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|
||
|
CMD ["apache2-foreground"]
|