Skip to content

Commit fb3b65b

Browse files
committed
Release 3.9.9 - See CHANGELOG.md
1 parent 6d1ef87 commit fb3b65b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 3.9.9 2023-08-21 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Start compiling aws-cli instead of from packages to continue to support arm/v7
5+
6+
17
## 3.9.8 2023-08-20 <ToshY@github>
28

39
### Changed

Dockerfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ LABEL maintainer="Dave Conroy (github.com/tiredofit)"
88
ENV INFLUX_VERSION=1.8.0 \
99
INFLUX2_VERSION=2.4.0 \
1010
MSSQL_VERSION=18.0.1.1-1 \
11+
AWS_CLI_VERSION=1.25.97 \
1112
CONTAINER_ENABLE_MESSAGING=FALSE \
1213
CONTAINER_ENABLE_MONITORING=TRUE \
1314
CONTAINER_PROCESS_RUNAWAY_PROTECTOR=FALSE \
@@ -29,13 +30,14 @@ RUN source /assets/functions/00-container && \
2930
openssl-dev \
3031
libffi-dev \
3132
python3-dev \
33+
py3-setuptools \
3234
py3-pip \
3335
xz-dev \
3436
&& \
3537
\
3638
package install .db-backup-run-deps \
37-
aws-cli \
3839
bzip2 \
40+
groff \
3941
libarchive \
4042
mariadb-client \
4143
mariadb-connector-c \
@@ -45,7 +47,15 @@ RUN source /assets/functions/00-container && \
4547
postgresql15 \
4648
postgresql15-client \
4749
pv \
50+
py3-botocore \
51+
py3-colorama \
4852
py3-cryptography \
53+
py3-docutils \
54+
py3-jmespath \
55+
py3-rsa \
56+
py3-s3transfer \
57+
py3-yaml \
58+
python3 \
4959
redis \
5060
sqlite \
5161
xz \
@@ -62,6 +72,8 @@ RUN source /assets/functions/00-container && \
6272
\
6373
if [ $mssql = "true" ] ; then curl -O https://download.microsoft.com/download/b/9/f/b9f3cce4-3925-46d4-9f46-da08869c6486/msodbcsql18_${MSSQL_VERSION}_amd64.apk ; curl -O https://download.microsoft.com/download/b/9/f/b9f3cce4-3925-46d4-9f46-da08869c6486/mssql-tools18_${MSSQL_VERSION}_amd64.apk ; echo y | apk add --allow-untrusted msodbcsql18_${MSSQL_VERSION}_amd64.apk mssql-tools18_${MSSQL_VERSION}_amd64.apk ; else echo >&2 "Detected non x86_64 build variant, skipping MSSQL installation" ; fi; \
6474
if [ $influx2 = "true" ] ; then curl -sSL https://dl.influxdata.com/influxdb/releases/influxdb2-client-${INFLUX2_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 ; \
75+
clone_git_repo https://github.com/aws/aws-cli "${AWS_CLI_VERSION}" && \
76+
python3 setup.py install --prefix=/usr && \
6577
clone_git_repo https://github.com/influxdata/influxdb "${INFLUX_VERSION}" && \
6678
go build -o /usr/sbin/influxd ./cmd/influxd && \
6779
strip /usr/sbin/influxd && \

0 commit comments

Comments
 (0)