-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add compatibility with newer version of PSR/simple-cache
Signed-off-by: Avior <[email protected]>
- Loading branch information
1 parent
383f7ef
commit 0757ca7
Showing
5 changed files
with
454 additions
and
704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
FROM php:8.1 | ||
|
||
WORKDIR /usr/src/app | ||
|
||
# Install deps | ||
RUN apt-get update \ | ||
&& apt-get install --yes --no-install-recommends \ | ||
git wget zip unzip \ | ||
&& apt-get clean \ | ||
&& rm --recursive --force /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# Install PHP extensions | ||
# RUN docker-php-ext-configure intl \ | ||
# && docker-php-ext-configure gd --with-freetype --with-jpeg \ | ||
# && docker-php-ext-install pdo mysqli pdo_mysql zip intl gd | ||
|
||
# Copy the PHP config | ||
# COPY php.ini /usr/local/etc/php/php.ini | ||
|
||
# Copy composer | ||
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.