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 2
2
FROM composer:2 AS composer
3
3
4
4
# --- Build Layer ---
5
- FROM php:8.3 -cli-alpine AS build
5
+ FROM php:8.4 -cli-alpine AS build
6
6
7
7
# Install dependencies for building PHAR
8
8
RUN apk add --no-cache bash git wget
@@ -19,13 +19,13 @@ COPY . .
19
19
RUN composer install --no-interaction --no-dev --optimize-autoloader
20
20
21
21
# 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
23
23
24
24
# Build PHAR file
25
25
RUN ./scripts/phar_build.sh
26
26
27
27
# --- Runtime Layer ---
28
- FROM php:8.3 -cli-alpine
28
+ FROM php:8.4 -cli-alpine
29
29
30
30
# Install Git, Unzip, and Wget dependencies
31
31
RUN apk add --no-cache git openssh
You can’t perform that action at this time.
0 commit comments