Skip to content

Commit

Permalink
FIX : Remise locale dans build docker
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Sep 27, 2024
1 parent d6fb427 commit da4107a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
# Image pour la compilation
FROM maven:3-eclipse-temurin-17 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 Java
# On débute par une mise en cache docker des dépendances Java
Expand Down

0 comments on commit da4107a

Please sign in to comment.