FROM ubuntu:22.04 RUN apt-get update && apt-get upgrade -y && \ apt-get install -y locales && \ localedef -i es_ES -c -f UTF-8 \ -A /usr/share/locale/locale.alias es_ES.UTF-8 ENV LANG es_ES.UTF-8 COPY entrypoint.sh / ENTRYPOINT ["/entrypoint.sh"]