21 lines
390 B
Docker
21 lines
390 B
Docker
|
# Use Python 3.11 slim image as base
|
||
|
FROM python:3.11-slim
|
||
|
|
||
|
# Set working directory
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Copy requirements first to leverage Docker cache
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
# Install dependencies
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
# Copy application code and .env
|
||
|
COPY main.py .
|
||
|
COPY .env .
|
||
|
|
||
|
# Expose health check port
|
||
|
EXPOSE 5000
|
||
|
|
||
|
# Run the bot
|
||
|
CMD ["python", "main.py"]
|