2025-01-31 14:23:19 +02:00
|
|
|
FROM python:alpine3.21
|
2025-01-31 14:34:34 +02:00
|
|
|
WORKDIR /pgbot
|
2024-10-19 22:21:22 +03:00
|
|
|
|
2025-01-31 14:30:11 +02:00
|
|
|
COPY requirements.txt .
|
2024-10-19 22:21:22 +03:00
|
|
|
ENV PIP_ROOT_USER_ACTION=ignore
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
2025-01-31 14:23:19 +02:00
|
|
|
COPY . .
|
2024-10-19 22:21:22 +03:00
|
|
|
CMD /pgbot/pgbot
|