File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22FROM composer:2 AS composer
33
44# --- Build Layer ---
5- FROM php:8.3 -cli-alpine AS build
5+ FROM php:8.4 -cli-alpine AS build
66
77# Install dependencies for building PHAR
88RUN apk add --no-cache bash git wget
@@ -19,13 +19,13 @@ COPY . .
1919RUN composer install --no-interaction --no-dev --optimize-autoloader
2020
2121# Install Box for PHAR building
22- RUN wget https://github.com/box-project/box/releases/download/4.5.1 /box.phar -O /usr/local/bin/box && chmod +x /usr/local/bin/box
22+ RUN wget https://github.com/box-project/box/releases/download/4.6.7 /box.phar -O /usr/local/bin/box && chmod +x /usr/local/bin/box
2323
2424# Build PHAR file
2525RUN ./scripts/phar_build.sh
2626
2727# --- Runtime Layer ---
28- FROM php:8.3 -cli-alpine
28+ FROM php:8.4 -cli-alpine
2929
3030# Install Git, Unzip, and Wget dependencies
3131RUN apk add --no-cache git openssh
You can’t perform that action at this time.
0 commit comments