Files
botmafieux/Dockerfile
Mathéo Nebulo9 DESSAUVAGES d14ca4ab3e
Some checks failed
CD / Deploy to VPS (push) Has been cancelled
feat: Add Russian Roulette feature betwwen two players
2026-07-14 16:12:16 +02:00

19 lines
341 B
Docker

FROM python:3.13.14-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt && \
apk add --no-cache firefox geckodriver
COPY . .
ENV TOKEN=""
ENV URL=""
ENV CONFIG_PATH="/config"
ENV COGS=""
ENV GECKODRIVER_PATH="/usr/bin/geckodriver"
RUN mkdir ${CONFIG_PATH}
ENTRYPOINT ["python", "main.py"]