woodburn-bot/Dockerfile
Nathan Woodburn de5c8787ba
All checks were successful
Build Docker / Build Docker (push) Successful in 17s
docker: Don't auto mount
2023-10-01 22:51:13 +11: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"]