countdown-bot

A Discord bot that runs countdown games and generates analytics
git clone https://git.ashermorgan.net/countdown-bot/
Log | Files | Refs | README

bot.Dockerfile (264B)


      1 FROM docker.io/python:3-alpine
      2 
      3 RUN apk update && apk add gcc g++ musl-dev postgresql-dev python3-dev
      4 
      5 WORKDIR /app
      6 
      7 COPY requirements.txt .
      8 RUN python3 -m pip install --no-cache-dir -r requirements.txt
      9 
     10 COPY countdown_bot .
     11 
     12 WORKDIR /
     13 CMD ["python", "-m", "app"]