diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b265373 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.10-alpine3.21 +LABEL authors="stawros" + +RUN mkdir /app + +COPY slack-exporter/requirements.txt /app/ +COPY slack-exporter/exporter.py /app/ + +RUN pip3 uninstall urllib3 +RUN pip3 install -r /app/requirements.txt + +CMD ["python3", "/app/exporter.py"]