1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

Updated default timezone

This commit is contained in:
Eldad Fux 2020-10-27 19:24:18 +02:00
parent 3f3914bf2d
commit db68da6e65
3 changed files with 4 additions and 6 deletions

View file

@ -14,8 +14,7 @@ RUN composer update --ignore-platform-reqs --optimize-autoloader \
FROM php:7.4-cli-alpine as step1
ENV TZ=Asia/Tel_Aviv \
PHP_REDIS_VERSION=5.3.0 \
ENV PHP_REDIS_VERSION=5.3.0 \
PHP_SWOOLE_VERSION=v4.5.6 \
PHP_MAXMINDDB_VERSION=v1.8.0 \
PHP_XDEBUG_VERSION=sdebug_2_9-beta
@ -67,8 +66,7 @@ LABEL maintainer="team@appwrite.io"
ARG VERSION=dev
ENV TZ=Asia/Tel_Aviv \
_APP_SERVER=swoole \
ENV _APP_SERVER=swoole \
_APP_ENV=production \
_APP_DOMAIN=localhost \
_APP_DOMAIN_TARGET=localhost \

View file

@ -93,7 +93,7 @@ $http->on('request', function (SwooleRequest $swooleRequest, SwooleResponse $swo
return;
}
$app = new App('Asia/Tel_Aviv');
$app = new App('America/New_York');
try {
$app->run($request, $response);

View file

@ -22,6 +22,6 @@ error_reporting(E_ALL);
include __DIR__ . '/../app/controllers/general.php';
$app = new App('Asia/Tel_Aviv');
$app = new App('America/New_York');
$app->run(new Request(), new Response());