Skip to content

Commit 41810b9

Browse files
authored
Update containerize.md (#23526)
## Description Fix a typo. ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review
1 parent c9fc5e1 commit 41810b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/guides/ruby/containerize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ EXPOSE 3000
135135
CMD ["./bin/rails", "server"]
136136
```
137137

138-
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.
138+
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.
139139

140140
```bash {title=docker-entrypoint}
141141
#!/bin/bash -e
@@ -278,4 +278,4 @@ Related information:
278278

279279
## Next steps
280280

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

0 commit comments

Comments
 (0)