mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 04:03:39 +00:00
6 lines
72 B
Docker
6 lines
72 B
Docker
FROM python:2.7
|
|
WORKDIR /code
|
|
ADD . /code
|
|
EXPOSE 80
|
|
CMD python index.py
|