5 lines
82 B
Docker
5 lines
82 B
Docker
|
FROM python:3
|
||
|
RUN pip install -U Flask
|
||
|
ADD hello.py ./
|
||
|
CMD ["python", "hello.py"]
|