Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/best-practices/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ be achieved by using a `Dockerfile` with the following contents:
EXPOSE 8080

USER nobody:nobody
ENTRYPOINT php public/index.php
ENTRYPOINT ["php", "public/index.php"]
```

Simply place the `Dockerfile` in your project directory like this:
Expand Down
2 changes: 1 addition & 1 deletion tests/Dockerfile-production
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ ENV X_LISTEN 0.0.0.0:8080
EXPOSE 8080

USER nobody:nobody
ENTRYPOINT php public/index.php
ENTRYPOINT ["php", "public/index.php"]