Skip to content

Commit d8ca949

Browse files
committed
Add git to docker image to fix build error
1 parent 07a1ae1 commit d8ca949

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ FROM python:3.12.3-slim
33

44
WORKDIR /app
55

6+
RUN apt-get update \
7+
&& apt-get install -y --no-install-recommends git \
8+
&& rm -rf /var/lib/apt/lists/*
9+
610
COPY requirements.lock ./
711

812
# comment out editable requirements, since they're not permitted in constraint files

0 commit comments

Comments
 (0)