Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
## 0.8.18 - June 13, 2024
- Update fluentd docker image to `v1.17.0-1.0`
## 0.9.0 - June 2nd, 2025

## 0.8.17 - June 21, 2022
- Bump rexml from 3.2.5 to 3.3.3 (via Dependabot)
- Update fluentd Docker image to `v1.18.0-debian` with a multistage build

## 0.8.18 - June 13th, 2024

- Update fluentd Docker image to `v1.17.0-1.0`

## 0.8.17 - June 21st, 2022

- Update rake requirement from ~> 0.9 to ~> 13.0
- Update yajl-ruby from 1.4.1 to 1.4.3
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
fluent-plugin-scalyr (0.8.18)
fluent-plugin-scalyr (0.9.0)
ffi (= 1.15.5)
fluentd (>= 0.14.0, < 2)
rbzip2 (= 0.3.0)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.18
0.9.0
19 changes: 12 additions & 7 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
FROM fluent/fluentd:v1.17.0-1.0
FROM fluent/fluentd:v1.18.0-debian AS build

USER root

RUN apt-get update \
&& apt-get install -y --no-install-recommends build-essential ruby-dev zlib1g-dev

COPY ./pkg/fluent-plugin-scalyr-*.gem /
RUN mv /fluent-plugin-scalyr-*.gem /fluent-plugin-scalyr.gem
RUN gem install --install-dir /bundle fluent-plugin-scalyr.gem \
&& (cd /bundle; tar czf /bundle.tar.gz .)

FROM fluent/fluentd:v1.18.0-debian

USER root

RUN apk add --no-cache --update --virtual .build-deps \
build-base ruby-dev \
&& gem install fluent-plugin-scalyr.gem \
&& gem sources --clear-all \
&& apk del .build-deps \
&& rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem
COPY --from=build /bundle.tar.gz /
RUN tar xzf /bundle.tar.gz -C /usr/local/bundle && rm /bundle.tar.gz

USER fluent