🎉 First commit!
This commit is contained in:
commit
99c2c62831
13 changed files with 280 additions and 0 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
FROM python:3.12-alpine
|
||||
|
||||
WORKDIR /bot
|
||||
|
||||
RUN apk update && apk add python3-dev gcc libc-dev libffi-dev
|
||||
|
||||
COPY requirements.txt requirements.txt
|
||||
RUN pip3 install -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
ENTRYPOINT ["/bot/entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue