12 lines
192 B
Docker
12 lines
192 B
Docker
# discord-bot/Dockerfile
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /discord-bot
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "frankstein-bot.py"]
|