ervu-dashboard-etl/Dockerfile
2024-08-29 11:49:52 +03:00

18 lines
372 B
Docker

FROM repo.micord.ru/tools/pdi-ce:8.3.0.0-371
ENV TZ=Europe/Moscow
ENV PDI_RELEASE=8.3 \
PDI_VERSION=8.3.0.0-371 \
PDI_HOME=/opt/pentaho-di \
KETTLE_HOME=/pentaho-di
COPY crontab /root/
COPY entrypoint.sh /root/
COPY mappings $PDI_HOME/mappings
RUN chmod +x /root/entrypoint.sh
ENV PATH=$PDI_HOME/data-integration:$PATH
ENTRYPOINT ["/root/entrypoint.sh"]