Skip to content
This repository was archived by the owner on Jul 2, 2021. It is now read-only.

Commit 787e1f8

Browse files
committed
Example - Getting Started - Fixed wrong image definition
- Added "latest" tag for alpine image
1 parent f12f56e commit 787e1f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/getting_started/pipeline.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# The most basic example
22
@job(description="Echoing hello world.")
3-
@docker("alpine")
3+
@docker("alpine:latest")
44
def hello_world(exec, *args, **kwargs):
55
exec("""
66
@@ -78,7 +78,7 @@ def alter_file(exec, *args, **kwargs):
7878
# Try changing "World" to something different and execute this job again to see this script really working
7979
# You can also use command parameters. Try executing "lead helloAgain --name=Peter".
8080
@job(name="helloAgain", description="Echoing hello to somebody.")
81-
@docker("alpine")
81+
@docker("alpine:latest")
8282
def complex_logic(exec, name="World", *args, **kwargs):
8383

8484
name=nameToUpper(name) # See below for nameToUpper function

0 commit comments

Comments
 (0)