Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +9 -0
- requirements.txt +4 -0
Dockerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.13-slim
|
| 2 |
+
|
| 3 |
+
WORKDIR /usr/src/app
|
| 4 |
+
COPY . /usr/src/app
|
| 5 |
+
RUN pip install --no-cache-dir gradio plotly pandas google-cloud-bigquery
|
| 6 |
+
EXPOSE 7860
|
| 7 |
+
ENV GRADIO_SERVER_NAME="0.0.0.0"
|
| 8 |
+
|
| 9 |
+
CMD ["python", "ocr_accuracy_dashboard.py"]
|
requirements.txt
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
gradio==6.0.1
|
| 2 |
+
plotly==6.5.0
|
| 3 |
+
pandas==2.3.3
|
| 4 |
+
google-cloud-bigquery==3.38.0
|