Update php base image to 8.0.17

This commit is contained in:
Juan Calderon-Perez 2022-03-22 22:37:52 -04:00 committed by GitHub
parent f193a59da9
commit da2d72b30a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ COPY public /usr/local/src/public
RUN npm ci
RUN npm run build
FROM php:8.0.14-cli-alpine3.15 as compile
FROM php:8.0.17-cli-alpine3.15 as compile
ARG DEBUG=false
ENV DEBUG=$DEBUG
@ -123,7 +123,7 @@ RUN \
./configure && \
make && make install
FROM php:8.0.14-cli-alpine3.15 as final
FROM php:8.0.17-cli-alpine3.15 as final
LABEL maintainer="team@appwrite.io"