You've already forked isop-mirror
16 lines
303 B
Docker
16 lines
303 B
Docker
FROM dunglas/frankenphp:1.10-php8.4-bookworm
|
|
|
|
RUN install-php-extensions \
|
|
pdo_mysql \
|
|
gd \
|
|
intl \
|
|
zip \
|
|
opcache
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
|
|
|
|
RUN composer install --no-dev --optimize-autoloader |