Skip to content
Merged
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
4 changes: 2 additions & 2 deletions content/guides/ruby/containerize.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@
CMD ["./bin/rails", "server"]
```

This Dockerfile uses a script at `./bin/docker-entrypoint` as the container's entrypiont. This script prepares the database and runs the application server. Below is an example of such a script.
This Dockerfile uses a script at `./bin/docker-entrypoint` as the container's entrypoint. This script prepares the database and runs the application server. Below is an example of such a script.

Check warning on line 138 in content/guides/ruby/containerize.md

View workflow job for this annotation

GitHub Actions / validate (vale)

[vale] reported by reviewdog 🐶 [Docker.RecommendedWords] Consider using 'following' instead of 'Below' Raw Output: {"message": "[Docker.RecommendedWords] Consider using 'following' instead of 'Below'", "location": {"path": "content/guides/ruby/containerize.md", "range": {"start": {"line": 138, "column": 158}}}, "severity": "INFO"}

```bash {title=docker-entrypoint}
#!/bin/bash -e
Expand Down Expand Up @@ -278,4 +278,4 @@

## Next steps

In the next section, you'll take a look at how to set up a CI/CD pipeline using GitHub Actions.
In the next section, you'll take a look at how to set up a CI/CD pipeline using GitHub Actions.