Commit
·
71d118c
1
Parent(s):
94d3611
copying the python files to the container
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -6,5 +6,7 @@ COPY ./requirements.txt /app/requirements.txt
|
|
6 |
|
7 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
8 |
|
|
|
|
|
9 |
EXPOSE 7860
|
10 |
CMD streamlit run /app/app.py
|
|
|
6 |
|
7 |
RUN pip install --no-cache-dir -r /app/requirements.txt
|
8 |
|
9 |
+
COPY . /app
|
10 |
+
|
11 |
EXPOSE 7860
|
12 |
CMD streamlit run /app/app.py
|