mirror of
https://github.com/cupcakearmy/tumbo.git
synced 2026-05-25 21:55:33 +00:00
examples
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
import sys
|
||||
|
||||
print(f'Hi, I am {sys.version}')
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM python:{{ version }}-alpine
|
||||
|
||||
COPY ./hi.py .
|
||||
|
||||
CMD [ "python", "hi.py" ]
|
||||
@@ -0,0 +1,10 @@
|
||||
variables:
|
||||
version:
|
||||
- 3.8
|
||||
- 3.7
|
||||
|
||||
recipe: ./simple.j2
|
||||
context: ./foo/bar
|
||||
|
||||
run: yes
|
||||
parallel: no
|
||||
Reference in New Issue
Block a user