Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -9,5 +9,6 @@ RUN chown -R user:user $HOME/app
|
|
9 |
RUN chmod -R 755 $HOME/app
|
10 |
COPY ./requirements.txt ~/app/requirements.txt
|
11 |
RUN pip install -r requirements.txt
|
|
|
12 |
COPY . .
|
13 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
9 |
RUN chmod -R 755 $HOME/app
|
10 |
COPY ./requirements.txt ~/app/requirements.txt
|
11 |
RUN pip install -r requirements.txt
|
12 |
+
RUN python3 -m modal setup
|
13 |
COPY . .
|
14 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|