aboutsummaryrefslogtreecommitdiff
path: root/dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'dockerfile')
-rw-r--r--dockerfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/dockerfile b/dockerfile
new file mode 100644
index 0000000..3c80fef
--- /dev/null
+++ b/dockerfile
@@ -0,0 +1,12 @@
+FROM python:3.12-slim
+
+LABEL org.opencontainers.image.source="https://git.pkrm.dev/parker/cordarr"
+LABEL org.opencontainers.image.authors="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