Skip to content

Commit 30203ae

Browse files
Merge pull request #6 from Intellection/bump-curator-version
Bump curator version.
2 parents 33bf2bf + 95a838d commit 30203ae

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

Dockerfile

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
FROM alpine:3.10.3
1+
ARG PYVER=3.11.7
2+
ARG ALPTAG=3.18
3+
FROM python:${PYVER}-alpine${ALPTAG}
24

3-
LABEL maintainer "Zappi DevOps <devops@zappistore.com>"
5+
LABEL maintainer "Zappi Site Reliability Engineering (SRE) <sre@zappistore.com>"
46

5-
ARG APP_DEPS="python py-setuptools"
6-
ARG BUILD_DEPS="py-pip"
7-
ARG CURATOR_VERSION="5.8.1"
7+
ARG CURATOR_VERSION="8.0.10"
88

9-
RUN apk --update add ${APP_DEPS} ${BUILD_DEPS} && \
10-
pip install elasticsearch-curator==${CURATOR_VERSION} && \
11-
apk del ${BUILD_DEPS} && \
12-
rm -rf /var/cache/apk/*
9+
RUN pip3 install elasticsearch-curator==${CURATOR_VERSION}
1310

1411
USER nobody:nobody
15-
ENTRYPOINT ["/usr/bin/curator"]
12+
ENTRYPOINT ["/usr/local/bin/curator"]

0 commit comments

Comments
 (0)