c85e1c909c
- Created a Dockerfile for containerization. - Added .env.example for environment variable configuration. - Implemented main bot functionality with meme command and webhook integration. *Generated by Github Copilot*
10 lines
146 B
Docker
10 lines
146 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r src/requirements.txt
|
|
|
|
|
|
# Run the bot
|
|
CMD ["python", "src/main.py"] |