cotcotquedec commited on
Commit
1bc675d
·
1 Parent(s): a9d25c7

chore(docker): add git-core to Dockerfile dependencies

Browse files

Added `git-core` to the list of system dependencies in the Dockerfile. This change ensures that Git is available in the container, which may be required for certain operations or dependencies that rely on Git.

This update helps streamline the setup process by ensuring all necessary tools are pre-installed in the container environment.

Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,7 @@ WORKDIR /app
4
 
5
  # Install system dependencies
6
  RUN apt-get update && apt-get install -y \
7
- curl wget\
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Install Python dependencies
 
4
 
5
  # Install system dependencies
6
  RUN apt-get update && apt-get install -y \
7
+ curl wget git-core\
8
  && rm -rf /var/lib/apt/lists/*
9
 
10
  # Install Python dependencies