hnshosting-wp/discord-bot/Dockerfile
Nathan Woodburn 036ddc7aa6
All checks were successful
Build Docker / Build Master (push) Successful in 23s
Build Docker / Build Bot (push) Successful in 37s
bot: Initial add
2023-08-16 17:43:30 +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"]