From dda4f2935ae483198fe942726190145f6d7e97a9 Mon Sep 17 00:00:00 2001 From: Eldad Fux Date: Sat, 21 Nov 2020 08:18:39 +0200 Subject: [PATCH] Updated RC version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fef1d9046..ad3ea0e94 100755 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN composer update --ignore-platform-reqs --optimize-autoloader \ --no-plugins --no-scripts --prefer-dist \ `if [ "$TESTING" != "true" ]; then echo "--no-dev"; fi` -FROM php:8.0.0RC3-cli-alpine as step1 +FROM php:8.0.0RC5-cli-alpine as step1 ENV PHP_REDIS_VERSION=5.3.2 \ PHP_SWOOLE_VERSION=v4.5.6 \ @@ -80,7 +80,7 @@ RUN \ make && make install && \ cd ../.. -FROM php:8.0.0RC3-cli-alpine as final +FROM php:8.0.0RC5-cli-alpine as final LABEL maintainer="team@appwrite.io"