Abel Hoogeveen
d35f15114b
Initial release. Removed Tracy dependency Implemented dependencyConstraint. Partially fixes #3. Built foundation. System is now fully in a working order, though many parts must still be developed. System still requires the following components: - Dependency Constraint. Only run when all dependencies have ran. - TaskScheduler. Standardized task that plans task periodically and maintains consistency. - Better TaskStorage. - Proper documentation Brought everything back into working condition. Also updated all copyright notices. Moved files into right place. Co-authored-by: Abel Hoogeveen <abel@techfuze.net> Reviewed-on: #1
7 lines
223 B
Docker
7 lines
223 B
Docker
FROM php:7.3-cli-buster
|
|
|
|
RUN apt-get update &&\
|
|
apt-get install --no-install-recommends --assume-yes --quiet procps ca-certificates curl git &&\
|
|
rm -rf /var/lib/apt/lists/*
|
|
# PDO
|
|
RUN docker-php-ext-install pdo_mysql |