We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 33bf2bf + 95a838d commit 30203aeCopy full SHA for 30203ae
Dockerfile
@@ -1,15 +1,12 @@
1
-FROM alpine:3.10.3
+ARG PYVER=3.11.7
2
+ARG ALPTAG=3.18
3
+FROM python:${PYVER}-alpine${ALPTAG}
4
-LABEL maintainer "Zappi DevOps <devops@zappistore.com>"
5
+LABEL maintainer "Zappi Site Reliability Engineering (SRE) <sre@zappistore.com>"
6
-ARG APP_DEPS="python py-setuptools"
-ARG BUILD_DEPS="py-pip"
7
-ARG CURATOR_VERSION="5.8.1"
+ARG CURATOR_VERSION="8.0.10"
8
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/*
+RUN pip3 install elasticsearch-curator==${CURATOR_VERSION}
13
14
USER nobody:nobody
15
-ENTRYPOINT ["/usr/bin/curator"]
+ENTRYPOINT ["/usr/local/bin/curator"]
0 commit comments