Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -8
Dockerfile
CHANGED
@@ -5,11 +5,5 @@ COPY . .
|
|
5 |
|
6 |
RUN pip install -r requirements.txt
|
7 |
|
8 |
-
# Run script
|
9 |
-
|
10 |
-
COPY cronjob /etc/cron.d/cronjob
|
11 |
-
RUN chmod 0644 /etc/cron.d/cronjob
|
12 |
-
RUN crontab /etc/cron.d/cronjob
|
13 |
-
RUN touch /var/log/cron.log
|
14 |
-
|
15 |
-
CMD ["cron", "-f"]
|
|
|
5 |
|
6 |
RUN pip install -r requirements.txt
|
7 |
|
8 |
+
# Run script immediately (no cron)
|
9 |
+
CMD ["python", "app.py"]
|
|
|
|
|
|
|
|
|
|
|
|