-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
75 lines (72 loc) · 3.83 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
###
# Image pour la compilation de theses batch indexation
FROM maven:3-eclipse-temurin-11 as build-image
WORKDIR /build/
# Installation et configuration de la locale FR
RUN apt update && DEBIAN_FRONTEND=noninteractive apt -y install locales
RUN sed -i '/fr_FR.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen
ENV LANG fr_FR.UTF-8
ENV LANGUAGE fr_FR:fr
ENV LC_ALL fr_FR.UTF-8
# On lance la compilation
# si on a un .m2 local on peut décommenter la ligne suivante pour
# éviter à maven de retélécharger toutes les dépendances
#COPY ./.m2/ /root/.m2/
COPY ./pom.xml /build/pom.xml
COPY ./src/ /build/src/
RUN mvn --batch-mode \
-Dmaven.test.skip=false \
-Duser.timezone=Europe/Paris \
-Duser.language=fr \
package
###
# Image pour le module batch d'insertion des thèses et personnes dans ES
# Remarque: l'image openjdk:11 n'est pas utilisée car nous avons besoin de cronie
# qui n'est que disponible sous centos/rockylinux.
FROM rockylinux:8 as batch-image
WORKDIR /scripts/
# systeme pour les crontab
# cronie: remplacant de crond qui support le CTRL+C dans docker (sans ce système c'est compliqué de stopper le conteneur)
# gettext: pour avoir envsubst qui permet de gérer le template tasks.tmpl
# Installation manuelle de pgrep suite à sa disparition dans l'image
RUN yum install -y procps
RUN dnf install -y cronie gettext && \
crond -V && rm -rf /etc/cron.*/*
COPY ./docker/batch/tasks-theses.tmpl /etc/cron.d/tasks-theses.tmpl
COPY ./docker/batch/tasks-personnes.tmpl /etc/cron.d/tasks-personnes.tmpl
COPY ./docker/batch/tasks-recherche-personnes.tmpl /etc/cron.d/tasks-recherche-personnes.tmpl
# Le JAR et le script pour le batch d'insertion des thèses et personnes dans ES
RUN dnf install -y java-11-openjdk
COPY docker/batch/theses-batch-indexation.sh /scripts/theses-batch-indexation.sh
RUN chmod +x /scripts/theses-batch-indexation.sh
COPY docker/batch/theses-batch-suppression.sh /scripts/theses-batch-suppression.sh
RUN chmod +x /scripts/theses-batch-suppression.sh
COPY docker/batch/thematiques-batch-indexation.sh /scripts/thematiques-batch-indexation.sh
RUN chmod +x /scripts/thematiques-batch-indexation.sh
COPY docker/batch/thematiques-batch-suppression.sh /scripts/thematiques-batch-suppression.sh
RUN chmod +x /scripts/thematiques-batch-suppression.sh
COPY docker/batch/personnes-batch-indexation.sh /scripts/personnes-batch-indexation.sh
RUN chmod +x /scripts/personnes-batch-indexation.sh
COPY docker/batch/recherche-personnes-batch-indexation.sh /scripts/recherche-personnes-batch-indexation.sh
RUN chmod +x /scripts/recherche-personnes-batch-indexation.sh
COPY docker/batch/recherche-personnes-batch-suppression.sh /scripts/recherche-personnes-batch-suppression.sh
RUN chmod +x /scripts/recherche-personnes-batch-suppression.sh
COPY --from=build-image /build/target/*.jar /scripts/theses-batch-indexation.jar
# Les fichiers de définition d'index et oaisets :
COPY ./src/main/resources/indexs/personnes.json /scripts/src/main/resources/indexs/personnes.json
COPY ./src/main/resources/indexs/recherche_personnes.json /scripts/src/main/resources/indexs/recherche_personnes.json
COPY ./src/main/resources/indexs/thematiques.json /scripts/src/main/resources/indexs/thematiques.json
COPY ./src/main/resources/indexs/theses.json /scripts/src/main/resources/indexs/theses.json
COPY ./src/main/resources/oaisets/listeOaiSets.xml /scripts/src/main/resources/oaisets/listeOaiSets.xml
COPY ./src/main/resources/application.properties /scripts/src/main/resources/application.properties
# Les locales fr_FR
RUN dnf install langpacks-fr glibc-all-langpacks -y
ENV LANG fr_FR.UTF-8
ENV LANGUAGE fr_FR:fr
ENV LC_ALL fr_FR.UTF-8
# Lancement de l'entrypoint et du démon crond
COPY ./docker/batch/docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["crond", "-n"]