@@ -29,7 +29,7 @@ mkpath("my_image_name")
29
29
cd (" my_image_name" )
30
30
31
31
pkgs = [
32
- " Foo" ,
32
+ " Foo" , # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
33
33
" Bar" ,
34
34
" Baz" ,
35
35
]
@@ -47,7 +47,7 @@ mkpath("my_image_name")
47
47
cd (" my_image_name" )
48
48
49
49
pkgs = [
50
- (name = " Foo" ,),
50
+ (name = " Foo" ,), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
51
51
(name = " Bar" ,),
52
52
(name = " Baz" ,),
53
53
]
@@ -65,8 +65,8 @@ mkpath("my_image_name")
65
65
cd (" my_image_name" )
66
66
67
67
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
70
70
(name = " Baz" , version = " 7.8.9" ,),
71
71
]
72
72
@@ -83,9 +83,9 @@ mkpath("my_image_name")
83
83
cd (" my_image_name" )
84
84
85
85
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
89
89
]
90
90
91
91
SimpleContainerGenerator. create_dockerfile (pkgs, pwd (); julia_version = v " 1.4.0" )
0 commit comments