From 3d8aca5ec4401dd0b538ecf41fcac841d797cb6b Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Mon, 28 Aug 2023 13:20:47 -0500 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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