Finn Christiansen
5bf7a17f7a
All checks were successful
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s
11 lines
180 B
Docker
11 lines
180 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.12-alpine
|
|
|
|
WORKDIR /bot
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "bot.py"]
|