12 lines
257 B
Docker
12 lines
257 B
Docker
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"]
|