You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/guides/ruby/containerize.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,7 +135,7 @@ EXPOSE 3000
135
135
CMD ["./bin/rails", "server"]
136
136
```
137
137
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.
139
139
140
140
```bash {title=docker-entrypoint}
141
141
#!/bin/bash -e
@@ -278,4 +278,4 @@ Related information:
278
278
279
279
## Next steps
280
280
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