qgallouedec HF Staff commited on
Commit
6fb9724
·
verified ·
1 Parent(s): 31a1090

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -5,4 +5,10 @@ FROM python:3.11-slim
5
  WORKDIR /app
6
 
7
  # Copy all files to the container
8
- COPY . /app
 
 
 
 
 
 
 
5
  WORKDIR /app
6
 
7
  # Copy all files to the container
8
+ COPY . /app
9
+
10
+ # Install required dependencies
11
+ RUN pip install -r requirements.txt
12
+
13
+ # Default command to run the script
14
+ CMD ["python", "main.py"]