diff --git a/Dockerfile b/Dockerfile index 7a2e04e..4973218 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,9 @@ WORKDIR /app COPY . /app -RUN apt-get update && \ - apt-get install -y jq && \ - pip install --no-cache-dir -r requirements.txt +RUN apt-get update +RUN apt-get install -y jq +RUN pip install --no-cache-dir -r requirements.txt EXPOSE 8000