diff --git a/Dockerfile b/Dockerfile index c32be6ee5d83ef7a40a01fb6f6bb2a574014c0f1..4a42cac9311df2d720da30828a99b367542bcd02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,2 @@ -# This file is a template, and might need editing before it works on your project. -FROM python:2.7 +print("hello world") -RUN mkdir -p /usr/src/app -WORKDIR /usr/src/app - -COPY requirements.txt /usr/src/app/ -RUN pip install --no-cache-dir -r requirements.txt - -COPY . /usr/src/app - -CMD ["python", "app.py"]