From 1bb362249b0949399e758cb178e2e3779bf3ba5a Mon Sep 17 00:00:00 2001 From: Untone Date: Sat, 17 Feb 2024 03:15:34 +0300 Subject: [PATCH] less-versioning-py-2 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d53dd7b..9f60e80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ EXPOSE 8000 COPY . /app # Install any needed packages specified in pyproject.toml -RUN apk update && apk add --no-cache gcc curl && \ - -RUN pip install -r requirements.txt --no-cache +RUN apk update && \ + apk add --no-cache gcc curl && \ + pip install -r requirements.txt --no-cache # Run server.py when the container launches CMD ["python", "server.py"]