diff --git a/Dockerfile b/Dockerfile index d124ef0..b272806 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM python:3.10.9-slim as builder RUN apt-get update && \ - apt-get install gcc g++ -y && \ + apt-get install git gcc g++ -y && \ apt-get clean COPY requirements/requirements.txt /app/requirements.txt @@ -19,4 +19,4 @@ COPY --from=builder /app/ /app/ WORKDIR /app ENV PATH=/root/.local/bin:$PATH -ENTRYPOINT uvicorn main:app --host 0.0.0.0 --port 8080 \ No newline at end of file +ENTRYPOINT uvicorn main:app --host 0.0.0.0 --port 8080