aboutsummaryrefslogtreecommitdiff
path: root/dockerfile
blob: d9866c10649e4b35528d15cd9795617351785a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.10-slim

LABEL org.opencontainers.image.source="https://github.com/PacketParker/Guava"
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" ]