Skip to content

Commit 86b366f

Browse files
committed
fix: add git to dockerfile
1 parent 887584e commit 86b366f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
FROM python:3.12-slim
2+
RUN apt-get update \
3+
&& apt-get install -y --no-install-recommends git \
4+
&& apt-get purge -y --auto-remove \
5+
&& rm -rf /var/lib/apt/lists/*
26
COPY --from=ghcr.io/astral-sh/uv:0.4.28 /uv /uvx /bin/
37
WORKDIR /app
48
COPY . .

0 commit comments

Comments
 (0)