amphp update
This commit is contained in:
parent
fd70f9e2ef
commit
cbfca5a4ae
|
|
@ -13,7 +13,7 @@ RUN apk add --no-cache \
|
|||
tini \
|
||||
openrc \
|
||||
busybox-initscripts \
|
||||
# Needed packages
|
||||
# Required packages
|
||||
composer \
|
||||
grep \
|
||||
git \
|
||||
|
|
@ -22,7 +22,9 @@ RUN apk add --no-cache \
|
|||
shadow \
|
||||
supervisor \
|
||||
inotify-tools \
|
||||
php7
|
||||
# PHP related
|
||||
php7 \
|
||||
php7-pcntl
|
||||
|
||||
# Syslog option '-Z' was changed to '-t', change this in /etc/conf.d/syslog so that syslog (and then cron) actually starts
|
||||
# https://gitlab.alpinelinux.org/alpine/aports/-/issues/9279
|
||||
|
|
|
|||
|
|
@ -1,5 +1,8 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
require "./vendor/autoload.php";
|
||||
|
||||
use Amp\Http\Server\RequestHandler\CallableRequestHandler;
|
||||
use Amp\Http\Server\HttpServer;
|
||||
use Amp\Http\Server\Request;
|
||||
|
|
|
|||
Loading…
Reference in New Issue