diff --git a/resources/views/frankenphp/builder.blade.php b/resources/views/frankenphp/builder.blade.php index 5de093a..c38c019 100644 --- a/resources/views/frankenphp/builder.blade.php +++ b/resources/views/frankenphp/builder.blade.php @@ -15,4 +15,4 @@ # EXPOSE ports EXPOSE 443 -CMD ["dist/frankenphp-linux-x86_64", "run", "-c","dist/app/Caddyfile"] \ No newline at end of file +ENTRYPOINT ["dist/frankenphp-linux-x86_64", "run", "-c","dist/app/Caddyfile"] \ No newline at end of file diff --git a/tests/Feature/Snippets/filament_v3/Dockerfile b/tests/Feature/Snippets/filament_v3/Dockerfile index 18ee0a5..678d5b0 100644 --- a/tests/Feature/Snippets/filament_v3/Dockerfile +++ b/tests/Feature/Snippets/filament_v3/Dockerfile @@ -1,2 +1,2 @@ # If we're using Filament v3 and above, run caching commands... -RUN php artisan icons:cache && php artisan filament:cache-components \ No newline at end of file +RUN php artisan icons:cache && php artisan filament:cache-components diff --git a/tests/Feature/Snippets/frankenphp_binary/Dockerfile b/tests/Feature/Snippets/frankenphp_binary/Dockerfile index acce921..9dd67b6 100644 --- a/tests/Feature/Snippets/frankenphp_binary/Dockerfile +++ b/tests/Feature/Snippets/frankenphp_binary/Dockerfile @@ -14,5 +14,5 @@ RUN ./dist/frankenphp-linux-x86_64 version \ # EXPOSE ports EXPOSE 443 -CMD ["dist/frankenphp-linux-x86_64", "run", "-c","dist/app/Caddyfile"] +ENTRYPOINT ["dist/frankenphp-linux-x86_64", "run", "-c","dist/app/Caddyfile"]