aw-bot/Dockerfile
Future 040fa26c83
Some checks failed
Lint / Lint Python code (push) Failing after 6s
init
2024-07-07 12:10:58 +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"]