13 lines
342 B
Docker
13 lines
342 B
Docker
ARG IMG=$MOODLE_IMG
|
|
FROM ${IMG}
|
|
LABEL maintainer="Adapted from: Ernesto Serrano <info@ernesto.es>"
|
|
|
|
|
|
USER root
|
|
COPY src/rootfs/ /
|
|
COPY 02-configure-moodle.sh /docker-entrypoint-init.d/
|
|
COPY 03-plugins.sh /docker-entrypoint-init.d/
|
|
COPY src/rootfs/var/www/html/admin/cli/isinstalled.php /
|
|
COPY is_moodle_ready.sh /
|
|
COPY nginx.conf /etc/nginx/
|