7 lines
77 B
Docker
7 lines
77 B
Docker
FROM python:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY app.py /app/
|
|
|
|
CMD ["python", "app.py"] |