pgbot/Dockerfile

10 lines
136 B
Docker

FROM python:alpine3.21
WORKDIR /pgbot
ENV PIP_ROOT_USER_ACTION=ignore
RUN pip install -r requirements.txt
COPY . .
CMD /pgbot/pgbot