File tree Expand file tree Collapse file tree 4 files changed +39
-16
lines changed
Expand file tree Collapse file tree 4 files changed +39
-16
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ references :
4+ environment : &environment
5+ IMAGE_NAME : " zappi/elasticsearch-curator"
6+
7+ jobs :
8+ test :
9+ docker :
10+ - image : docker:18.06.3-ce-git
11+ environment : *environment
12+ steps :
13+ - checkout
14+ - setup_remote_docker :
15+ docker_layer_caching : true
16+ version : 18.06.0-ce
17+ - run :
18+ name : " Build Image"
19+ command : docker build -t $IMAGE_NAME .
20+ - run :
21+ name : " Test Image"
22+ command : docker run $IMAGE_NAME --version
23+
24+ workflows :
25+ version : 2
26+ build_test :
27+ jobs :
28+ - test
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 5.8.1
4+
5+ * Upgrade Alpine to v3.10.3.
6+ * Bump curator to v5.8.1.
7+ * Set containers to run as ` nobody ` user & group.
8+
9+ Ps: Going forward, our version will track the version of Curator that's packaged.
10+
311## 5.1.0
412
513* Upgrade Curator to v5.6.0.
Original file line number Diff line number Diff line change 1- FROM alpine:3.5
1+ FROM alpine:3.10.3
22
33LABEL maintainer "Zappi DevOps <devops@zappistore.com>"
44
55ARG APP_DEPS="python py-setuptools"
66ARG BUILD_DEPS="py-pip"
7- ARG CURATOR_VERSION="5.6.0 "
7+ ARG CURATOR_VERSION="5.8.1 "
88
99RUN apk --update add ${APP_DEPS} ${BUILD_DEPS} && \
1010 pip install elasticsearch-curator==${CURATOR_VERSION} && \
1111 apk del ${BUILD_DEPS} && \
1212 rm -rf /var/cache/apk/*
1313
14+ USER nobody:nobody
1415ENTRYPOINT ["/usr/bin/curator" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments