diff options
Diffstat (limited to 'dockerfile')
-rw-r--r-- | dockerfile | 12 |
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 |