Skip to content

Commit

Permalink
Add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
verovaleros committed Dec 27, 2024
1 parent 987ccd9 commit 4d97694
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM python:3.12-slim

WORKDIR /app

COPY requirements.txt .

RUN pip install --no-cache-dir -r requirements.txt

COPY cleaning/ cleaning/
COPY ingestion/ ingestion/
COPY metrics/ metrics/
COPY README.md README.md

CMD ["bash"]

0 comments on commit 4d97694

Please sign in to comment.