broken bad code lole

This commit is contained in:
2024-03-03 23:01:01 -05:00
parent 91d55efd20
commit c16bbb5275
29 changed files with 538 additions and 154 deletions

14
scraper/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM python:3.11
# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# Set the working directory in the container
WORKDIR /app
# Install any needed packages specified in requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "main.py"]