Compare commits

...

2 Commits

Author SHA1 Message Date
Muhamad Aditya Prima 64f3803b5f Updated apache alpine dockerfile
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:cli os:alpine os_version:3.12 php_ver_short:7 php_version:7.3 with_database:false with_server:false]) (push) Successful in 52s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:cli os:alpine os_version:3.15 php_ver_short:7 php_version:7.4 with_database:false with_server:false]) (push) Successful in 1m1s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:cli os:alpine os_version:3.9 php_ver_short:7 php_version:7.2 with_database:false with_server:false]) (push) Successful in 53s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.12 php_ver_short:7 php_version:7.3 with_database:false with_server:apache]) (push) Successful in 1m31s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.12 php_ver_short:7 php_version:7.3 with_database:false with_server:false]) (push) Successful in 1m6s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.12 php_ver_short:7 php_version:7.3 with_database:mysql with_server:apache]) (push) Successful in 1m49s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.12 php_ver_short:7 php_version:7.3 with_database:postgresql with_server:apache]) (push) Successful in 1m8s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.15 php_ver_short:7 php_version:7.4 with_database:false with_server:apache]) (push) Successful in 1m17s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.15 php_ver_short:7 php_version:7.4 with_database:false with_server:false]) (push) Successful in 1m6s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.15 php_ver_short:7 php_version:7.4 with_database:mysql with_server:apache]) (push) Successful in 1m21s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.15 php_ver_short:7 php_version:7.4 with_database:postgresql with_server:apache]) (push) Successful in 1m17s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.9 php_ver_short:7 php_version:7.2 with_database:false with_server:apache]) (push) Successful in 1m11s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.9 php_ver_short:7 php_version:7.2 with_database:false with_server:false]) (push) Successful in 1m9s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.9 php_ver_short:7 php_version:7.2 with_database:mysql with_server:apache]) (push) Successful in 1m11s Details
Build and push PHP 7 container images / Build PHP 7 container images (map[mode:full os:alpine os_version:3.9 php_ver_short:7 php_version:7.2 with_database:postgresql with_server:apache]) (push) Has been cancelled Details
2024-12-27 13:42:45 +07:00
Muhamad Aditya Prima a30e4283be Fixed docker command on php 7 apache 2024-12-27 13:41:06 +07:00
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ ENV COMPOSER_VERSION=${COMPOSER_VERSION}
WORKDIR /root WORKDIR /root
ADD 7/scripts/alpine-setup.sh /tmp/setup.sh ADD 7/scripts/alpine-setup.sh /tmp/setup.sh
ADD scripts/entrypoint.sh /usr/local/bin/ ADD scripts/apache-entrypoint.sh /usr/local/bin/entrypoint.sh
ADD https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/composer.phar /usr/local/bin/composer ADD https://github.com/composer/composer/releases/download/${COMPOSER_VERSION}/composer.phar /usr/local/bin/composer
# Create directory, and install required php app # Create directory, and install required php app
@ -79,4 +79,4 @@ WORKDIR /app/htdocs
STOPSIGNAL SIGQUIT STOPSIGNAL SIGQUIT
CMD ["/usr/bin/php", "-v"] CMD ["/usr/local/bin/entrypoint.sh"]