Utilizing Docker for portability

This commit is contained in:
2025-11-06 16:32:24 -05:00
parent 085cc008b4
commit a531df5e9f
2 changed files with 55 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM python:3.13
WORKDIR /ETL
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python3", "./src/load.py"]