diff options
author | Parker <contact@pkrm.dev> | 2025-01-19 23:53:26 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2025-01-19 23:53:26 -0600 |
commit | dc86e686373b43760863d7a7766119bef87571dc (patch) | |
tree | 49f92dc5600da1c6e0cf47fb943b7fdce815986e /dockerfile | |
parent | b5bd2e36b6597303985eb9dc897e04d452950372 (diff) |
Add Docker image
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 |