FROM python:2.7.15 WORKDIR /mrnevz COPY requirements.txt RUN pip install -r requirements.txt COPY main.py CMD ["python3", "./main.py"] EXPOSE 8000