aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r--bot/Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile
new file mode 100644
index 0000000..6e97ed6
--- /dev/null
+++ b/bot/Dockerfile
@@ -0,0 +1,10 @@
1FROM python:3.10
2
3WORKDIR /usr/src/app
4
5COPY requirements.txt ./
6RUN pip install --no-cache-dir -r requirements.txt
7
8COPY . .
9
10CMD [ "python", "./bot.py" ]
Powered by cgit v1.2.3 (git 2.41.0)