This commit is contained in:
2025-02-24 22:47:01 +08:00
parent faec083397
commit 29e6479741
54 changed files with 1255 additions and 1245 deletions

View File

@@ -1,8 +1,11 @@
FROM php:8.2-fpm
FROM php:8.4-fpm
RUN apt update && \
apt upgrade -y && \
apt install -y git
apt install -y --no-install-recommends git && \
apt-get clean autoclean && \
apt-get autoremove --yes && \
rm -rf /var/lib/{apt,dpkg,cache,log}/
COPY --from=composer /usr/bin/composer /usr/local/bin/composer