@@ -29,7 +29,7 @@ mkpath("my_image_name")
2929cd (" my_image_name" )
3030
3131pkgs = [
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")
4747cd (" my_image_name" )
4848
4949pkgs = [
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")
6565cd (" my_image_name" )
6666
6767pkgs = [
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")
8383cd (" my_image_name" )
8484
8585pkgs = [
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
9191SimpleContainerGenerator. create_dockerfile (pkgs, pwd (); julia_version = v " 1.4.0" )
0 commit comments