erik
46f0c72c3e
It seems, timeout sends signals that do not stop the server process. Set the signal to SIGKILL - which also kills the function.sh process. Thus moved the last function to entrypoint.sh
10 lines
192 B
Docker
10 lines
192 B
Docker
FROM clojure:lein
|
|
|
|
# Prepare Entrypoint Script
|
|
ADD resources /tmp
|
|
|
|
ENV SOURCEDIR="/etc/websitesource"
|
|
ENV BUILDDIR="/etc/website"
|
|
ENV WEBSITEROOT="/var/www/html/website/"
|
|
|
|
RUN /tmp/install.sh
|