Skip to content

Commit debeeb0

Browse files
Merge pull request #2 from patternhelloworld/feat/isomorphic-safe-deployment
fix : update php sample Dockerfile
2 parents 8b3a335 + 6715bea commit debeeb0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,9 @@ _main() {
181181
if [[ -n "${remote_deployment_failure_strategy}" ]]; then
182182
remote_deployment_run_on_remotes
183183
fi
184-
echo "[NOTICE] Successfully built the App image for Production deployment : ${new_state}" && exit 0
184+
display_checkpoint_message "[NOTICE] Deployed the App image for all Production servers... Check the detailed logs. (100%)" && exit 0
185185
else
186-
echo "[NOTICE] App image binary saved to ./.docker/binary/${project_name}" && exit 0
186+
display_checkpoint_message "[NOTICE] App image binary saved to ./.docker/binary/${project_name}... (100%)" && exit 0
187187
fi
188188
fi
189189

samples/laravel-crud-boilerplate/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4-fpm-buster as backend-build
1+
FROM php:7.4-fpm-bullseye AS backend-build
22

33
RUN apt-get -qqy update && apt-get -qqy upgrade
44

@@ -44,7 +44,7 @@ WORKDIR /var/www/app
4444
RUN composer install --prefer-dist --optimize-autoloader --no-interaction
4545

4646

47-
FROM php:7.4-fpm-buster as production
47+
FROM php:7.4-fpm-bullseye AS production
4848

4949
ARG server
5050

0 commit comments

Comments
 (0)