aboutsummaryrefslogtreecommitdiff
path: root/dockerfile
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-06-26 18:56:37 -0500
committerParker <contact@pkrm.dev>2024-06-26 18:56:37 -0500
commit79bbfd14ecb634b832f7b03e7ba1afbc346c9aee (patch)
tree789f48240c73a2702e783a5a8d185baf51d92aad /dockerfile
parent7723b5adb0b58afd5e9071d1548e369ca8b1e06a (diff)
Add support for Docker!
Diffstat (limited to 'dockerfile')
-rw-r--r--dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/dockerfile b/dockerfile
new file mode 100644
index 0000000..398d972
--- /dev/null
+++ b/dockerfile
@@ -0,0 +1,13 @@
+FROM python:3.10-slim
+
+LABEL org.opencontainers.image.source = "https://github.com/PacketParker/Guava"
+
+MAINTAINER "parker <mailto:contact@pkrm.dev>"
+
+WORKDIR /
+
+COPY . .
+RUN pip install -r requirements.txt
+
+ENTRYPOINT [ "python" ]
+CMD [ "-u", "code/bot.py" ] \ No newline at end of file