diff --git a/Dockerfile b/Dockerfile index 8452775..15fa366 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM python:3.7.3 +RUN mkdir app +WORKDIR /app + + COPY ./ ./ RUN pip install --no-cache-dir -r requirements.txt