Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update php docker tag to v7.4 #58

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ images+=("${repobase}/${reponame}")

#Create webtop-webdav container
reponame="webtop-webdav"
container=$(buildah from docker.io/library/php:7.3-fpm-alpine)
container=$(buildah from docker.io/library/php:7.4-fpm-alpine)
buildah add ${container} ${PWD}/webtop5-build/webtop-dav-server-$webtop_version.tgz /usr/share/webtop/webdav/
buildah run ${container} sh -c "mv \$PHP_INI_DIR/php.ini-production \$PHP_INI_DIR/php.ini"
# Commit the image
Expand All @@ -114,7 +114,7 @@ images+=("${repobase}/${reponame}")

#Create webtop-z-push container
reponame="webtop-z-push"
container=$(buildah from docker.io/library/php:7.3-fpm-alpine)
container=$(buildah from docker.io/library/php:7.4-fpm-alpine)
buildah copy --from=docker.io/mlocati/php-extension-installer:1.5.37 ${container} /usr/bin/install-php-extensions /usr/local/bin/
buildah run ${container} sh -c "install-php-extensions imap"
buildah add ${container} ${PWD}/webtop5-build/webtop-eas-server-$webtop_version.tgz /usr/share/webtop/z-push/
Expand Down
Loading