Sha256: d0cc491890405cb19ade7c2c17a61ab08d322d819fa108489b69cc298273c640

Contents?: true

Size: 467 Bytes

Versions: 13

Compression:

Stored size: 467 Bytes

Contents

#!/usr/bin/env bash
set -e
TAG=$1

# Install dependecies
gem install bundler
bundle update --bundler
bundle install

# Build Gem
bundle exec rake build -t -v
cp pkg/fluent-plugin-*.gem docker

# Build Docker Image
VERSION=`cat VERSION`
echo "Copying licenses to be included in the docker image..."
mkdir -p docker/licenses
cp -rp LICENSE docker/licenses/
docker build --no-cache --pull --build-arg VERSION=$VERSION --no-cache -t splunk/k8s-metrics-aggr:$TAG ./docker

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fluent-plugin-k8s-metrics-agg-1.2.3 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.2.2 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.2.1 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.2.0 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.12 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.11 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.10 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.9 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.8 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.7 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.6 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.4 docker/build.sh
fluent-plugin-k8s-metrics-agg-1.1.3 docker/build.sh