We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b82ec commit 2e1f88eCopy full SHA for 2e1f88e
Dockerfile
@@ -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