This commit is contained in:
cupcakearmy
2019-12-22 19:59:57 +01:00
parent 136ac20101
commit 0a0a38d9db
20 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
import sys
print(f'Hi, I am {sys.version}')

View File

@@ -0,0 +1,5 @@
FROM python:{{ version }}-alpine
COPY ./hi.py .
CMD [ "python", "hi.py" ]