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

Updated PHP version

This commit is contained in:
Eldad Fux 2021-02-06 00:17:06 +02:00
parent 70e0e5b1a3
commit a856d618de

View file

@ -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.0-cli-alpine as step1
FROM php:8.0-cli-alpine as step1
ENV PHP_REDIS_VERSION=5.3.2 \
PHP_SWOOLE_VERSION=v4.6.2 \
@ -80,7 +80,7 @@ RUN \
make && make install && \
cd ../..
FROM php:8.0.0-cli-alpine as final
FROM php:8.0-cli-alpine as final
LABEL maintainer="team@appwrite.io"