Updated Dockerfiles and implemented API endpoint
This commit is contained in:
11
Dockerfiles/bot/Dockerfile
Normal file
11
Dockerfiles/bot/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM python:3.10-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements_bot.txt .
|
||||
|
||||
RUN pip3 install -r requirements_bot.txt
|
||||
|
||||
COPY code /app
|
||||
|
||||
ENTRYPOINT [ "python", "bot.py" ]
|
||||
Reference in New Issue
Block a user