Add Streamlit app + knb_stats analysis notebooks

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
wes
2026-05-27 10:06:19 -04:00
co-authored by Claude Opus 4.7
parent dd6ff18b04
commit ade774f5aa
8 changed files with 1661 additions and 1 deletions
+6 -1
View File
@@ -2,9 +2,14 @@ FROM python:3.13-slim
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY attractions_api_logger.py .
COPY . .
# Default to scraper, but can be overridden in docker-compose
ENTRYPOINT ["python", "-u", "attractions_api_logger.py"]