Dockerfile: Better handling of entrypoint.sh
This commit is contained in:
parent
8c19e869b7
commit
d3c3cb0c1f
2 changed files with 3 additions and 2 deletions
|
@ -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…
Reference in a new issue