Skip to content

Commit

Permalink
Merge pull request #56 from hwbllmnn/allow-unicode-filenames
Browse files Browse the repository at this point in the history
fix: allow unicode filenames
  • Loading branch information
buehner authored May 29, 2024
2 parents 0d4736f + a8029b3 commit d41f90b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ENV CATALINA_OPTS="\$EXTRA_JAVA_OPTS \
# init
RUN apt update \
&& 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 \
&& rm -rf /var/cache/apt/* \
&& rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -105,6 +105,8 @@ EXPOSE 8080

WORKDIR /tmp

RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && locale-gen

RUN echo "Installing GeoServer $GS_VERSION $GS_BUILD"

COPY --from=download /tmp/geoserver $CATALINA_HOME/webapps/geoserver
Expand Down

0 comments on commit d41f90b

Please sign in to comment.