mirror of
https://github.com//cppla/ServerStatus
synced 2025-06-04 22:59:50 +08:00
11 lines
221 B
Plaintext
11 lines
221 B
Plaintext
FROM python:alpine
|
|
|
|
LABEL maintainer="lidalao"
|
|
LABEL version="0.0.1"
|
|
LABEL description="Telegram Bot for ServerStatus"
|
|
|
|
WORKDIR /app
|
|
RUN pip install requests
|
|
COPY ./bot-telegram.py .
|
|
CMD [ "python", "./bot-telegram.py" ]
|