Docker & CI

This commit is contained in:
Piotr Dec 2025-04-30 13:50:07 +02:00
parent bce46422fc
commit f2b2c05a29
No known key found for this signature in database
GPG key ID: D3B5A5D0150D147A
2 changed files with 17 additions and 3 deletions

View file

@ -3,10 +3,11 @@ LABEL authors="stawros"
RUN mkdir /app
COPY slack-exporter/requirements.txt /app/
COPY slack-exporter/exporter.py /app/
COPY requirements.txt /app/
COPY exporter_ng.py /app/
COPY tui.py /app/
RUN pip3 uninstall urllib3
RUN pip3 install -r /app/requirements.txt
CMD ["python3", "/app/exporter.py"]
CMD ["python3", "/app/tui.py"]