Skip to content

Commit 4a084b9

Browse files
authored
Clarify the documentation
1 parent 0d6a85e commit 4a084b9

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mkpath("my_image_name")
2929
cd("my_image_name")
3030

3131
pkgs = [
32-
"Foo",
32+
"Foo", # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
3333
"Bar",
3434
"Baz",
3535
]
@@ -47,7 +47,7 @@ mkpath("my_image_name")
4747
cd("my_image_name")
4848

4949
pkgs = [
50-
(name = "Foo",),
50+
(name = "Foo",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
5151
(name = "Bar",),
5252
(name = "Baz",),
5353
]
@@ -65,8 +65,8 @@ mkpath("my_image_name")
6565
cd("my_image_name")
6666

6767
pkgs = [
68-
(name = "Foo", version = "1.2.3",),
69-
(name = "Bar", version = "4.5.6",),
68+
(name = "Foo", version = "1.2.3",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
69+
(name = "Bar", version = "4.5.6",), # and replace the version numbers with actual version numbers for the packages
7070
(name = "Baz", version = "7.8.9",),
7171
]
7272

@@ -83,9 +83,9 @@ mkpath("my_image_name")
8383
cd("my_image_name")
8484

8585
pkgs = [
86-
(name = "Foo", version = "1.2.3",),
87-
(name = "Bar", version = "4.5.6",),
88-
(name = "Baz", rev = "master",),
86+
(name = "Foo", version = "1.2.3",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
87+
(name = "Bar", version = "4.5.6",), # and replace the version numbers with actual version numbers for the packages
88+
(name = "Baz", rev = "master",), # and replace "master" with the name of the branch you want to use
8989
]
9090

9191
SimpleContainerGenerator.create_dockerfile(pkgs, pwd(); julia_version = v"1.4.0")

0 commit comments

Comments
 (0)