Files
Fediverse-Bridge/Dockerfile
T
2023-09-09 23:01:43 +08:00

12 lines
185 B
Docker

FROM python:3.9-bullseye
ENV telegramtoken None
ENV misskeybot None
WORKDIR /app
COPY main.py .
RUN pip install pyTelegramBotAPI requests html2text
ENTRYPOINT ["python", "main.py"]