Files
aw-bot/Dockerfile
2024-07-07 16:59:47 +02:00

14 lines
175 B
Docker

FROM python:alpine
WORKDIR /aw-bot
COPY . /aw-bot
RUN pip install --no-cache-dir -r requirements.txt
COPY patterns.json /aw-bot
ENV BOT_TOKEN=""
CMD ["python", "aw.py"]