aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-11-24 22:11:03 -0800
committerclarkzjw <[email protected]>2022-11-24 22:11:03 -0800
commitd19a3e6bdd8ad77cf0d90cc882880d9f3e1433b4 (patch)
tree5c41c76ea256efa84db48afcdb55ea6d3c4f3931 /Dockerfile
parent7451d6229a8fcb0442adaa9be2af26173b9c363b (diff)
downloadSquare-d19a3e6bdd8ad77cf0d90cc882880d9f3e1433b4.tar.gz
docker: add Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..202b577
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
1FROM python:3
2
3WORKDIR /app
4
5COPY requirements.txt ./
6
7RUN pip install --no-cache-dir -r requirements.txt
8
9ADD *.py ./
10
11CMD ["python", "./bot.py"]
Powered by cgit v1.2.3 (git 2.41.0)