Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM python:3.9-slim-buster
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install build tools and other dependencies
|
8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
9 |
build-essential \
|
10 |
cmake \
|
@@ -12,7 +12,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
12 |
libblis-dev \
|
13 |
python3-venv \
|
14 |
python3-dev \
|
15 |
-
wget
|
|
|
16 |
|
17 |
# Copy the repository content (including .gitmodules and TTS pointer)
|
18 |
COPY . /app/
|
|
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install build tools and other dependencies, including git
|
8 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
9 |
build-essential \
|
10 |
cmake \
|
|
|
12 |
libblis-dev \
|
13 |
python3-venv \
|
14 |
python3-dev \
|
15 |
+
wget \
|
16 |
+
git # Ensure git is installed here
|
17 |
|
18 |
# Copy the repository content (including .gitmodules and TTS pointer)
|
19 |
COPY . /app/
|