1
0
Fork 0
mirror of synced 2024-06-02 10:54:44 +12:00

Merge pull request #2991 from gaby/update-baseimage

Update PHP Docker Image to v8.0.17
This commit is contained in:
Torsten Dittmann 2022-04-19 15:54:15 +02:00 committed by GitHub
commit 3839b7d71b
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"