Files
resourcespace-docker/entrypoint.sh

11 lines
207 B
Bash

#!/bin/bash
# Start cron service
service cron start
# Ensure daily cron jobs are executable
chmod +x /etc/cron.daily/*
# Start Apache in the foreground (keeps the container alive)
apachectl -D FOREGROUND