Skip to content

Commit

Permalink
Add git installation to Dockerfile
Browse files Browse the repository at this point in the history
* **Install git**
  - Add `RUN apt-get update && apt-get install -y git` to install git in the Docker image
  • Loading branch information
yongenaelf committed Nov 6, 2024
1 parent 9bde0a4 commit 78ca478
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/software_team/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 78ca478

Please sign in to comment.