mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 20:12:43 +00:00
10 lines
137 B
Plaintext
10 lines
137 B
Plaintext
from python:3.7
|
|
|
|
copy . /app
|
|
workdir /app
|
|
|
|
run pip install -r requirements.txt
|
|
expose 5000
|
|
entrypoint [ "python" ]
|
|
|
|
cmd [ "__init__.py" ] |