diff --git a/Dockerfile b/Dockerfile index 6e7e168..c7d45ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,4 +13,12 @@ RUN apt-get update && apt-get install -y \ # We enable Apache's mod_rewrite a2enmod rewrite + +# Copy app content COPY . /var/www/html + +# Copy start script +COPY docker/entrypoint.sh / +VOLUME /var/www/html/data + +CMD /entrypoint.sh diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh new file mode 100755 index 0000000..6d2df63 --- /dev/null +++ b/docker/entrypoint.sh @@ -0,0 +1,5 @@ +#! /bin/sh + +chown -R www-data /var/www/html/data +rm -r /var/www/html/docker +apache2-foreground