FROM python:3.7.2-slim-stretch RUN pip install poetry WORKDIR /src/app COPY . /src/app RUN poetry install CMD ["poetry", "run", "rckr"]