File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,11 @@ RUN adduser -h ${USER_HOME_DIR} -s /sbin/nologin -u 1000 -D ${USER_NAME} && \
2828 apk add --virtual build_deps $BUILD_DEPS && \
2929 \
3030 cp /usr/bin/envsubst /usr/local/bin/envsubst && \
31- apk del build_deps
31+ apk del build_deps && \
32+ wget --quiet -O /tmp/fenv.tar.gz "https://github.com/joseluisq/fenv/releases/download/v1.0.0/fenv_1.0.0_linux_$arch.tar.gz" ; \
33+ tar xzvf /tmp/fenv.tar.gz -C /usr/local/bin fenv; \
34+ rm -f /tmp/fenv.tar.gz; \
35+ chmod +x /usr/local/bin/fenv
3236
3337COPY ./__mysqldump.sh /usr/local/bin/__mysqldump.sh
3438COPY ./mysql_exporter /usr/local/bin/mysql_exporter
@@ -53,5 +57,5 @@ LABEL org.opencontainers.image.vendor="Jose Quintana" \
5357 org.opencontainers.image.url="https://github.com/joseluisq/alpine-mysql-client" \
5458 org.opencontainers.image.title="Alpine / MySQL Client" \
5559 org.opencontainers.image.description="MySQL client tools on top of Alpine Linux x86_64." \
56- org.opencontainers.image.version="v1.1.0 " \
60+ org.opencontainers.image.version="v1.1.1 " \
5761 org.opencontainers.image.documentation="https://github.com/joseluisq/alpine-mysql-client/blob/master/README.md"
You can’t perform that action at this time.
0 commit comments