Dockerfile: Better handling of entrypoint.sh

pull/283/head
Felix Breidenstein 6 years ago
parent 8c19e869b7
commit d3c3cb0c1f

@ -18,7 +18,9 @@ RUN apt-get update && apt-get install -y \
COPY . /var/www/html
# Copy start script
COPY docker/entrypoint.sh /
RUN mv /var/www/html/docker/entrypoint.sh / && \
rm -r /var/www/html/docker
VOLUME /var/www/html/data
CMD /entrypoint.sh

@ -1,5 +1,4 @@
#! /bin/sh
chown -R www-data /var/www/html/data
rm -r /var/www/html/docker
apache2-foreground

Loading…
Cancel
Save