discord/pwsBot/Dockerfile
2024-05-16 14:01:00 -07:00

12 lines
207 B
Docker

FROM python:3.11
WORKDIR /app
COPY bot.py requirements.txt ./
COPY resource/ ./resource
COPY commands/ ./commands
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "bot.py" ]