Docker_service/Dockerfile.genreport

20 lines
383 B
Docker
Raw Normal View History

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
RUN chown -R app:app /srv
USER app
WORKDIR /srv
ENTRYPOINT ["python3"]
2024-03-25 18:13:17 -03:00
CMD ["reportgen.py"]