Skip to content

Commit 2e1f88e

Browse files
authored
add Dockerfile
1 parent 04b82ec commit 2e1f88e

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM python:3.12-slim
2+
3+
WORKDIR /bot
4+
5+
COPY requirements.txt .
6+
7+
RUN pip install --no-cache-dir -r requirements.txt
8+
9+
COPY bot.py .
10+
11+
CMD ["python3", "bot.py"]

0 commit comments

Comments
 (0)