pgbot/Dockerfile
2025-01-31 14:34:34 +02:00

9 lines
158 B
Docker

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