pgbot/Dockerfile

8 lines
134 B
Docker

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