Initial project commit

This commit is contained in:
2025-08-22 09:43:32 -04:00
commit 344d0ccef4
6 changed files with 147 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
# Use a lightweight Python base image
FROM python:3.9-slim
# Set working directory inside the container
WORKDIR /app
# Install dependencies: only PRAW is external; others are stdlib
RUN pip install --no-cache-dir praw
RUN mkdir -p /app/data # Create data directory
# Copy your script and watchlist into the container
COPY wsb_ticker_scanner.py .
COPY watchlist.json .
# Command to run the script (this will execute once when the container starts)
CMD ["python", "wsb_ticker_scanner.py"]