mirror of
https://github.com/unixtensor/proxmox-ntfy.git
synced 2025-06-27 19:38:06 +00:00
10 lines
207 B
Docker
10 lines
207 B
Docker
FROM debian
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y lm-sensors python3 python3-requests && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "python3", "/src/main.py" ] |