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"]