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