🐳 Add container files
All checks were successful
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s
All checks were successful
Python formatting PEP8 / Python-PEP8 (push) Successful in 13s
This commit is contained in:
parent
7a3e2e5e07
commit
5bf7a17f7a
3 changed files with 23 additions and 0 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
@ -0,0 +1,11 @@
|
|||
# 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"]
|
Loading…
Add table
Add a link
Reference in a new issue