Correct Dockerfile
Browse files- Dockerfile +2 -3
Dockerfile
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
FROM 3.8.17-alpine3.18
|
2 |
-
# copy the requirements.txt file first to avoid cache invalidations
|
3 |
-
COPY requirements.txt /app/requirements.txt
|
4 |
WORKDIR /app
|
|
|
5 |
RUN pip install -r requirements.txt
|
6 |
-
COPY .
|
7 |
CMD ["chainlit", "app.py", "--port", "7860"]
|
|
|
1 |
FROM 3.8.17-alpine3.18
|
|
|
|
|
2 |
WORKDIR /app
|
3 |
+
COPY ./requirements.txt /app/requirements.txt
|
4 |
RUN pip install -r requirements.txt
|
5 |
+
COPY . .
|
6 |
CMD ["chainlit", "app.py", "--port", "7860"]
|