leonsimon23 commited on
Commit
d49ea59
·
verified ·
1 Parent(s): e385268

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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