Merge pull request #56 from hwbllmnn/allow-unicode-filenames
fix: allow unicode filenamespull/58/head
commit
d41f90b965
|
|
@ -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/*
|
||||||
|
|
@ -105,6 +105,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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue