2024-03-25 02:28:29 -03:00
|
|
|
FROM python:3.11-slim
|
|
|
|
|
2024-03-25 18:23:36 -03:00
|
|
|
RUN apt-get update && apt-get -y install git libpq-dev gcc && apt-get clean
|
2024-03-25 02:28:29 -03:00
|
|
|
|
|
|
|
RUN useradd -m app
|
|
|
|
|
2024-03-25 18:13:17 -03:00
|
|
|
RUN git clone https://72d861f982d2a76275d5b8178fe0633b19c43d33@dev.ilab.cl/TDTP/Reportes_gen /srv
|
2024-03-25 02:28:29 -03:00
|
|
|
|
2024-03-25 18:13:17 -03:00
|
|
|
RUN pip3 install --no-cache-dir -r /srv/reportgen/requirements.txt
|
2024-03-25 02:28:29 -03:00
|
|
|
|
2024-03-25 23:40:27 -03:00
|
|
|
WORKDIR /srv
|
|
|
|
|
2024-03-25 23:37:34 -03:00
|
|
|
ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache
|
|
|
|
|
2024-03-25 23:40:27 -03:00
|
|
|
RUN git pull
|
2024-03-25 23:37:34 -03:00
|
|
|
|
2024-03-25 02:28:29 -03:00
|
|
|
RUN chown -R app:app /srv
|
|
|
|
|
|
|
|
USER app
|
|
|
|
|
|
|
|
ENTRYPOINT ["python3"]
|
|
|
|
|
2024-03-25 18:13:17 -03:00
|
|
|
CMD ["reportgen.py"]
|