initial commit

This commit is contained in:
Pavel Zilke 2024-08-29 11:49:52 +03:00
commit 9752e0a932
26 changed files with 20618 additions and 0 deletions

18
Dockerfile Normal file
View file

@ -0,0 +1,18 @@
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"]