Spaces:
Runtime error
Runtime error
dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,3 +1,5 @@
|
|
1 |
FROM python:3.11
|
|
|
|
|
2 |
RUN pip install -r requirements.txt
|
3 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|
|
|
1 |
FROM python:3.11
|
2 |
+
WORKDIR /app
|
3 |
+
COPY requirements.txt .
|
4 |
RUN pip install -r requirements.txt
|
5 |
CMD ["chainlit", "run", "app.py", "--port", "7860"]
|