Spaces:
Runtime error
Runtime error
ToluClassics
commited on
Commit
β’
86261d1
1
Parent(s):
1f6bc1e
Docker
Browse files- Dockerfile +7 -0
- app.py β main.py +0 -0
- requirements.txt +2 -0
Dockerfile
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.8
|
2 |
+
EXPOSE 8501
|
3 |
+
WORKDIR /app
|
4 |
+
COPY requirements.txt ./requirements.txt
|
5 |
+
RUN pip3 install -r requirements.txt
|
6 |
+
COPY . .
|
7 |
+
CMD streamlit run main.py --theme.base light
|
app.py β main.py
RENAMED
File without changes
|
requirements.txt
ADDED
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
1 |
+
streamlit==1.13.0
|
2 |
+
requests==2.28.1
|