Skip to content

Commit

Permalink
Replace CMD with ENTRYPOINT
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathryn Anne S Tan committed Apr 22, 2024
1 parent 48669cf commit c6ad426
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/frankenphp/builder.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# 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"]
2 changes: 1 addition & 1 deletion tests/Feature/Snippets/filament_v3/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
RUN php artisan icons:cache && php artisan filament:cache-components
2 changes: 1 addition & 1 deletion tests/Feature/Snippets/frankenphp_binary/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit c6ad426

Please sign in to comment.