blob: 398d972c971a6aa2fdd7cb84e6e03a7073c428ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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" ]
|