Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -11,10 +11,10 @@ COPY requirements.txt .
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Copy bot code
|
14 |
-
COPY
|
15 |
|
16 |
# Expose the port for Flask
|
17 |
EXPOSE 7860
|
18 |
|
19 |
# Start the bot
|
20 |
-
CMD ["python", "
|
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
|
13 |
# Copy bot code
|
14 |
+
COPY app.py .
|
15 |
|
16 |
# Expose the port for Flask
|
17 |
EXPOSE 7860
|
18 |
|
19 |
# Start the bot
|
20 |
+
CMD ["python", "app.py"]
|