Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +7 -8
Dockerfile
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
-
FROM python:3.10.11-slim
|
2 |
-
WORKDIR $HOME/app
|
3 |
-
COPY requirements.txt $HOME/app
|
4 |
-
RUN mkdir /.cache && chmod 777 /.cache
|
5 |
-
RUN pip install -r requirements.txt
|
6 |
-
COPY . $HOME/app
|
7 |
-
|
8 |
-
RUN python kitt.py download-files
|
9 |
CMD python kitt.py start
|
|
|
1 |
+
FROM python:3.10.11-slim
|
2 |
+
WORKDIR $HOME/app
|
3 |
+
COPY requirements.txt $HOME/app
|
4 |
+
RUN mkdir /.cache && chmod 777 /.cache
|
5 |
+
RUN pip install -r requirements.txt
|
6 |
+
COPY . $HOME/app
|
7 |
+
RUN python kitt.py download-files
|
|
|
8 |
CMD python kitt.py start
|