krata/entrypoint.sh

13 lines
364 B
Bash
Executable File

#!/bin/bash
set -e
# Remove a potentially pre-existing server.pid for Rails.
rm -f /app/tmp/pids/server.pid
gem update --system
bundle install
git config --global --add safe.directory /app
bundle exec jekyll serve --host 0.0.0.0 -o https://www.cscherr.de:4000 --port 4000
# Then exec the container's main process (what's set as CMD in the Dockerfile).
exec "$@"