Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multi-stage-builds tutorial: warn about Macbook M4 bug #22102

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,12 @@

### Create the Dockerfile

> [!WARNING]
> Docker Desktop v4.38 and earlier are affected by a bug that prevent completing this tutorial on Macbook M4.

Check failure on line 149 in content/get-started/docker-concepts/building-images/multi-stage-builds.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Macbook'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Macbook'?", "location": {"path": "content/get-started/docker-concepts/building-images/multi-stage-builds.md", "range": {"start": {"line": 149, "column": 99}}}, "severity": "ERROR"}
>
> Upgrade to v4.39 or later if you're running a Macbook M4.

Check failure on line 151 in content/get-started/docker-concepts/building-images/multi-stage-builds.md

View workflow job for this annotation

GitHub Actions / vale

[vale] reported by reviewdog 🐶 [Vale.Spelling] Did you really mean 'Macbook'? Raw Output: {"message": "[Vale.Spelling] Did you really mean 'Macbook'?", "location": {"path": "content/get-started/docker-concepts/building-images/multi-stage-builds.md", "range": {"start": {"line": 151, "column": 49}}}, "severity": "ERROR"}
{ .warning }

Now that you have the project, you’re ready to create the `Dockerfile`.

1. Create a file named `Dockerfile` in the same folder that contains all the other folders and files (like src, pom.xml, etc.).
Expand Down