Skip to content

Commit 332cd90

Browse files
committed
DTIN-5940: Switch to the Alpine base image for AWS ECS secretOptions support
1 parent 3e571f6 commit 332cd90

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.9.1 - June 12th, 2025
2+
3+
- Update fluentd Docker image to `v1.18.0-1.3`
4+
- Done to support AWS ECS secretOptions
5+
16
## 0.9.0 - June 2nd, 2025
27

38
- Bump rexml from 3.2.5 to 3.3.3 (via Dependabot)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
fluent-plugin-scalyr (0.9.0)
4+
fluent-plugin-scalyr (0.9.1)
55
ffi (= 1.15.5)
66
fluentd (>= 0.14.0, < 2)
77
rbzip2 (= 0.3.0)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.9.1

docker/Dockerfile

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
1-
FROM fluent/fluentd:v1.18.0-debian AS build
1+
FROM fluent/fluentd:v1.18.0-1.3
22

33
USER root
44

5-
RUN apt-get update \
6-
&& apt-get install -y --no-install-recommends build-essential ruby-dev zlib1g-dev
7-
85
COPY ./pkg/fluent-plugin-scalyr-*.gem /
96
RUN mv /fluent-plugin-scalyr-*.gem /fluent-plugin-scalyr.gem
10-
RUN gem install --install-dir /bundle fluent-plugin-scalyr.gem \
11-
&& (cd /bundle; tar czf /bundle.tar.gz .)
12-
13-
FROM fluent/fluentd:v1.18.0-debian
14-
15-
USER root
16-
17-
COPY --from=build /bundle.tar.gz /
18-
RUN tar xzf /bundle.tar.gz -C /usr/local/bundle && rm /bundle.tar.gz
7+
RUN apk add --no-cache --update --virtual .build-deps build-base ruby-dev \
8+
&& gem install fluent-plugin-scalyr.gem \
9+
&& gem sources --clear-all \
10+
&& apk del .build-deps \
11+
&& rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem
1912

2013
USER fluent

0 commit comments

Comments
 (0)