Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -4,6 +4,9 @@ FROM python:3.9-slim
|
|
4 |
# Set the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
|
|
|
|
|
|
7 |
# Clone the repository from GitHub
|
8 |
RUN git clone https://github.com/leoncool23/testhg.git .
|
9 |
|
|
|
4 |
# Set the working directory inside the container
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install necessary dependencies
|
8 |
+
RUN apt-get update && apt-get install -y git
|
9 |
+
|
10 |
# Clone the repository from GitHub
|
11 |
RUN git clone https://github.com/leoncool23/testhg.git .
|
12 |
|