Reduce docker image

This commit is contained in:
Yax 2025-04-02 18:40:49 +02:00
parent 22a8fd6ba8
commit 3957cb8738

View file

@ -1,29 +1,12 @@
FROM nginx:1.27.4-alpine-slim FROM nginx:1.27.4-alpine-slim
RUN apk update RUN apk update && apk add --no-cache bash git python3 make tzdata curl py3-pip musl-locales
RUN apk add --no-cache build-base bash git python3 make tzdata curl py3-pip libressl-dev musl-dev libffi-dev python3-dev cargo RUN curl -LsSf https://astral.sh/uv/install.sh | sh && mv /root/.local/bin/uv /usr/local/bin
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
RUN mv /root/.local/bin/uv /usr/local/bin
RUN mv /root/.local/bin/uvx /usr/local/bin
COPY docker/nginx.conf /etc/nginx/nginx.conf COPY docker/nginx.conf /etc/nginx/nginx.conf
# install locales
ENV MUSL_LOCALE_DEPS cmake make musl-dev gcc gettext-dev libintl
ENV MUSL_LOCPATH /usr/share/i18n/locales/musl
RUN apk add --no-cache \
$MUSL_LOCALE_DEPS \
&& wget https://gitlab.com/rilian-la-te/musl-locales/-/archive/master/musl-locales-master.zip \
&& unzip musl-locales-master.zip \
&& cd musl-locales-master \
&& cmake -DLOCALE_PROFILE=OFF -D CMAKE_INSTALL_PREFIX:PATH=/usr . && make && make install \
&& cd .. && rm -r musl-locales-master
# set timezone and locale # set timezone and locale
RUN cp /usr/share/zoneinfo/Europe/Paris /etc/localtime RUN cp /usr/share/zoneinfo/Europe/Paris /etc/localtime && echo "Europe/Paris" > /etc/timezone
RUN echo "Europe/Paris" > /etc/timezone
ENV TZ Europe/Paris ENV TZ Europe/Paris
ENV LANG fr_FR.UTF-8 ENV LANG fr_FR.UTF-8
ENV LANGUAGE fr_FR.UTF-8 ENV LANGUAGE fr_FR.UTF-8