13 lines
272 B
Protocol Buffer
13 lines
272 B
Protocol Buffer
|
FROM python:3.11-alpine
|
||
|
RUN apk update
|
||
|
RUN apk add git
|
||
|
|
||
|
RUN git clone https://72d861f982d2a76275d5b8178fe0633b19c43d33@dev.ilab.cl/TDTP/proto_backend /srv
|
||
|
|
||
|
WORKDIR /srv
|
||
|
|
||
|
RUN pip install -r requirements.txt
|
||
|
|
||
|
ENTRYPOINT ["watch"]
|
||
|
CMD ["-n", "30", "-t", "python", "main.py"]
|