mirror of
https://codeberg.org/D3M0N/thread-bot.git
synced 2025-04-11 20:58:47 +02:00
13 lines
239 B
Docker
13 lines
239 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dependencies with additional options for reliability
|
|
COPY requirements.txt .
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
# Copy source code
|
|
COPY *.py .
|
|
COPY config.toml .
|
|
|
|
CMD ["python", "main.py"]
|