diff --git a/examples/software_team/Dockerfile b/examples/software_team/Dockerfile index 31b80559..a856e0f8 100644 --- a/examples/software_team/Dockerfile +++ b/examples/software_team/Dockerfile @@ -1,6 +1,9 @@ # Use a base image with Python 3.10+ FROM python:3.10-slim +# Install git +RUN apt-get update && apt-get install -y git + # Set the working directory WORKDIR /app COPY . /app