-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #823 from Kovah/dev
v1 Release
- Loading branch information
Showing
8 changed files
with
56 additions
and
48 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
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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 |
---|---|---|
@@ -1,8 +1,10 @@ | ||
FROM docker.io/library/php:8.3-fpm-alpine | ||
|
||
# Install package and PHP dependencies | ||
RUN apk add --no-cache mariadb-client postgresql postgresql-dev sqlite zip libzip-dev; \ | ||
RUN apk add --no-cache mariadb-client postgresql-client postgresql-dev sqlite zip libzip-dev; \ | ||
docker-php-ext-configure zip; \ | ||
docker-php-ext-install bcmath pdo_mysql pdo_pgsql zip ftp; \ | ||
mkdir /ssl-certs; \ | ||
docker-php-source delete | ||
docker-php-source delete; \ | ||
rm -f /usr/src/php.tar.xz /usr/src/php.tar.xz.asc; \ | ||
apk del --no-cache postgresql-dev |