Skip to content

Commit 89e13a0

Browse files
committed
Release 4.1.6 - See CHANGELOG.md
1 parent a71c52f commit 89e13a0

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.1.6 2024-10-29 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Add libtirpc
5+
6+
17
## 4.1.5 2024-10-29 <dave at tiredofit dot ca>
28

39
### Added

Dockerfile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ RUN source /assets/functions/00-container && \
144144
git \
145145
go \
146146
libarchive-dev \
147+
libtirpc-dev \
147148
openssl-dev \
148149
libffi-dev \
149150
ncurses-dev \
@@ -159,6 +160,7 @@ RUN source /assets/functions/00-container && \
159160
gpg-agent \
160161
groff \
161162
libarchive \
163+
libtirpc \
162164
mariadb-client \
163165
mariadb-connector-c \
164166
mongodb-tools \
@@ -200,8 +202,13 @@ RUN source /assets/functions/00-container && \
200202
echo >&2 "Detected non x86_64 or ARM64 build variant, skipping MSSQL installation" ; \
201203
fi; \
202204
\
203-
if [ "${influx2,,}" = "true" ] ; then curl -sSL https://dl.influxdata.com/influxdb/releases/influxdb2-client-${INFLUX2_CLIENT_VERSION}-linux-${influx_arch}.tar.gz | tar xvfz - --strip=1 -C /usr/src/ ; chmod +x /usr/src/influx ; mv /usr/src/influx /usr/sbin/ ; else echo >&2 "Unable to build Influx 2 on this system" ; fi ; \
204-
sleep 30 && \
205+
if [ "${influx2,,}" = "true" ] ; then \
206+
curl -sSL https://dl.influxdata.com/influxdb/releases/influxdb2-client-${INFLUX2_CLIENT_VERSION}-linux-${influx_arch}.tar.gz | tar xvfz - --strip=1 -C /usr/src/ ; \
207+
chmod +x /usr/src/influx ; \
208+
mv /usr/src/influx /usr/sbin/ ;
209+
else \
210+
echo >&2 "Unable to build Influx 2 on this system" ; \
211+
fi ; \
205212
clone_git_repo https://github.com/influxdata/influxdb "${INFLUX1_CLIENT_VERSION}" && \
206213
go build -o /usr/sbin/influxd ./cmd/influxd && \
207214
strip /usr/sbin/influxd && \

0 commit comments

Comments
 (0)