Update Dockerfile
Browse files- 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"]
|