Dockerfile: old comments removed.
| | |
| | | COPY --chown=borgbutler:borgbutler entrypoint.sh /app |
| | | RUN chmod 755 /app/entrypoint.sh |
| | | |
| | | # Variable expansion doesn't work for ENTRYPOINT definition as array, but array is required, because graceful shutdown of |
| | | # container isn't given if java is started via 'sh -c' as it will be done by ENTRYPOINT java ..... |
| | | # Java options are modifiable by user through own ENTRYPOINT definition on docker run or in docker-compose.yml. |
| | | ENTRYPOINT ["/app/entrypoint.sh"] |
| | | |
| | | MAINTAINER Micromata |