File size: 295 Bytes
e779189 2679f71 e779189 28454ae e779189 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# huggingface specific port
EXPOSE 7860
# Start the bot and keep the container alive(idk it is working or not)
CMD ["sh", "-c", "python bot_telegram.py & tail -f /dev/null"]
|