woodburn-bot/Dockerfile
Nathan Woodburn 32817c8c32
All checks were successful
Build Docker / Build Docker (push) Successful in 18s
bot: Add ssl notifications
2023-10-01 22:38:31 +11:00

7 lines
155 B
Docker

FROM python:3.10-bullseye
COPY requirements.txt /app/
WORKDIR /app
RUN pip install -r requirements.txt
COPY . .
VOLUME [ "/mnt" ]
CMD ["python3", "bot.py"]