Skip to content

Commit e22ed0d

Browse files
committed
Update to PHP 8.4 and latest Box release
1 parent b074e9d commit e22ed0d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
FROM 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
88
RUN apk add --no-cache bash git wget
@@ -19,13 +19,13 @@ COPY . .
1919
RUN 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
2525
RUN ./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
3131
RUN apk add --no-cache git openssh

0 commit comments

Comments
 (0)