mirror of
https://github.com/FAUSheppy/monitoring-tools
synced 2026-04-26 14:42:30 +02:00
13 lines
234 B
Docker
13 lines
234 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache py3-pip
|
|
|
|
WORKDIR /app
|
|
RUN python3 -m pip install --no-cache-dir --break-system-packages requests PyYaml
|
|
|
|
COPY check_smtp_imap.py .
|
|
|
|
EXPOSE 5000/tcp
|
|
ENTRYPOINT ["python"]
|
|
CMD ["check_smtp_imap.py"]
|