5 lines
89 B
Plaintext
5 lines
89 B
Plaintext
FROM python:3.9
|
|
ADD main.py .
|
|
#CMD [“python”, “./main.py”]
|
|
CMD python ./main.py
|