fix: allow unicode filenames

pull/47/head
Andreas Schmitz 2024-05-14 15:45:04 +02:00 committed by Chris Barnett
parent 2d277578a6
commit f41ecf84fc
1 changed files with 3 additions and 1 deletions

View File

@ -32,7 +32,7 @@ ENV CATALINA_OPTS="\$EXTRA_JAVA_OPTS \
# init # init
RUN apt update \ RUN apt update \
&& apt -y upgrade \ && apt -y upgrade \
&& apt install -y --no-install-recommends openssl unzip gdal-bin wget curl openjdk-11-jdk gettext \ && apt install -y --no-install-recommends locales openssl unzip gdal-bin wget curl openjdk-11-jdk gettext \
&& apt clean \ && apt clean \
&& rm -rf /var/cache/apt/* \ && rm -rf /var/cache/apt/* \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
@ -104,6 +104,8 @@ EXPOSE 8080
WORKDIR /tmp WORKDIR /tmp
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen
RUN echo "Installing GeoServer $GS_VERSION $GS_BUILD" RUN echo "Installing GeoServer $GS_VERSION $GS_BUILD"
COPY --from=download /tmp/geoserver $CATALINA_HOME/webapps/geoserver COPY --from=download /tmp/geoserver $CATALINA_HOME/webapps/geoserver