woodburn-bot/Dockerfile
Nathan Woodburn 790872f92c
All checks were successful
Build Docker / Build Docker (push) Successful in 1m30s
bot: initial code
2023-08-11 15:55:44 +10:00

6 lines
137 B
Docker

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