Hotfix ingestor github flow, and move to top level src folder (foldedr per service) (#179)

This commit is contained in:
iPromKnight
2024-03-28 10:20:26 +00:00
committed by GitHub
parent 4308a0ee71
commit baec0450bf
9 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
FROM docker.io/python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir poetry
RUN poetry config virtualenvs.create false
COPY . /app
RUN poetry install --no-dev
CMD ["python", "/app/torrent_ingestor/main.py"]