9 lines
134 B
Text
9 lines
134 B
Text
|
FROM python:alpine3.20
|
||
|
|
||
|
WORKDIR /pgbot
|
||
|
COPY . .
|
||
|
ENV PIP_ROOT_USER_ACTION=ignore
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
CMD /pgbot/pgbot
|