FROM ubuntu:24.04
LABEL maintainer="Timothée Couble <timothee.couble@kitware.com>"

COPY install_deps.sh /root/install_deps.sh
RUN sh /root/install_deps.sh

# Changes locals
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
    locale-gen
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US:en
ENV LC_ALL=en_US.UTF-8
