diff --git a/app/config/environments.php b/app/config/environments.php index 473da1b769..f304cf777a 100644 --- a/app/config/environments.php +++ b/app/config/environments.php @@ -106,6 +106,15 @@ $environments = [ 'logo' => 'deno.png', 'supports' => [System::X86, System::PPC, System::ARM], ], + 'deno-1.8' => [ + 'name' => 'Deno', + 'version' => '1.8', + 'base' => 'hayd/deno:alpine-1.8.2', + 'image' => 'appwrite/env-deno-1.8:1.0.0', + 'build' => '/usr/src/code/docker/environments/deno-1.8', + 'logo' => 'deno.png', + 'supports' => [System::X86, System::PPC, System::ARM], + ], 'dart-2.10' => [ 'name' => 'Dart', 'version' => '2.10', diff --git a/app/config/variables.php b/app/config/variables.php index 2bb130692b..77280ad1c3 100644 --- a/app/config/variables.php +++ b/app/config/variables.php @@ -389,7 +389,7 @@ return [ 'name' => '_APP_FUNCTIONS_ENVS', 'description' => 'This option allows you to limit the available environments for cloud functions. This option is very useful for low-cost servers to safe disk space.\n\nTo enable/activate this option, pass a list of allowed environments separated by a comma.\n\nCurrently, supported environments are: ' . \implode(', ', \array_keys(Config::getParam('providers'))), 'introduction' => '0.7.0', - 'default' => 'node-14.5,deno-1.6,php-7.4,python-3.9,ruby-3.0,dotnet-5.0', + 'default' => 'node-14.5,deno-1.8,php-7.4,python-3.9,ruby-3.0,dotnet-5.0', 'required' => false, 'question' => '', ], diff --git a/docker/environments/build.sh b/docker/environments/build.sh index 6dffb17611..8087a2165b 100644 --- a/docker/environments/build.sh +++ b/docker/environments/build.sh @@ -9,6 +9,9 @@ docker buildx build --platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64 echo 'Deno 1.6...' docker buildx build --platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/386,linux/ppc64le -t appwrite/env-deno-1.6:1.0.0 ./docker/environments/deno-1.6/ --push +echo 'Deno 1.8...' +docker buildx build --platform linux/amd64,linux/386 -t appwrite/env-deno-1.8:1.0.0 ./docker/environments/deno-1.8/ --push + echo 'Node 14.5...' docker buildx build --platform linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le -t appwrite/env-node-14.5:1.0.0 ./docker/environments/node-14.5/ --push diff --git a/docker/environments/deno-1.8/Dockerfile b/docker/environments/deno-1.8/Dockerfile new file mode 100644 index 0000000000..e064614473 --- /dev/null +++ b/docker/environments/deno-1.8/Dockerfile @@ -0,0 +1,11 @@ +FROM hayd/deno:alpine-1.8.3 + +LABEL maintainer="team@appwrite.io" + +RUN apk add tar + +RUN mkdir /usr/local/src + +WORKDIR /usr/local/src/ + +ENV DENO_DIR=/usr/local/src/.appwrite \ No newline at end of file diff --git a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php index 504106dace..c4a60cd694 100644 --- a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php +++ b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php @@ -541,6 +541,14 @@ class FunctionsCustomServerTest extends Scope 'command' => 'deno run --allow-env index.ts', 'timeout' => 15, ], + [ + 'language' => 'Deno', + 'version' => '1.8', + 'name' => 'deno-1.8', + 'code' => $functions.'/deno.tar.gz', + 'command' => 'deno run --allow-env index.ts', + 'timeout' => 15, + ], [ 'language' => 'Dart', 'version' => '2.10',