generated from gns3/vnc-template
glibc more?
Some checks failed
Build Docker Image on Commit v4 / build-and-publish (push) Failing after 2s
Some checks failed
Build Docker Image on Commit v4 / build-and-publish (push) Failing after 2s
This commit is contained in:
parent
36e020bdb4
commit
e372d13ad7
1 changed files with 7 additions and 2 deletions
|
@ -16,8 +16,13 @@ RUN apk add --no-cache wget
|
||||||
COPY --from=builder /WinBox /WinBox
|
COPY --from=builder /WinBox /WinBox
|
||||||
|
|
||||||
RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-2.35-r1.apk && \
|
RUN wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-2.35-r1.apk && \
|
||||||
apk add --allow-untrusted glibc-2.35-r1.apk && \
|
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-bin-2.35-r1.apk && \
|
||||||
rm glibc-2.35-r1.apk && \
|
wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.35-r1/glibc-i18n-2.35-r1.apk && \
|
||||||
|
apk add --allow-untrusted glibc-2.35-r1.apk glibc-bin-2.35-r1.apk glibc-i18n-2.35-r1.apk && \
|
||||||
|
/usr/glibc-compat/bin/localedef -i en_US -f UTF-8 en_US.UTF-8 && \
|
||||||
|
echo "export LANG=en_US.UTF-8" >> /etc/profile.d/glibc.sh && \
|
||||||
|
echo "export LC_ALL=en_US.UTF-8" >> /etc/profile.d/glibc.sh && \
|
||||||
|
rm glibc-2.35-r1.apk glibc-bin-2.35-r1.apk glibc-i18n-2.35-r1.apk && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
COPY ./entrypoint.sh /entrypoint.sh
|
COPY ./entrypoint.sh /entrypoint.sh
|
||||||
|
|
Loading…
Reference in a new issue