Spaces:
Running
Running
Fix: Add git installation to Dockerfile for RepoMix
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -4,10 +4,11 @@ FROM python:3.10-slim
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install system dependencies for Node.js installation
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
curl \
|
10 |
gnupg \
|
|
|
11 |
&& rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
# Add Node.js LTS repository and install Node.js and npm
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install system dependencies for Node.js installation and Git
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
curl \
|
10 |
gnupg \
|
11 |
+
git \
|
12 |
&& rm -rf /var/lib/apt/lists/*
|
13 |
|
14 |
# Add Node.js LTS repository and install Node.js and npm
|