prometheus-server-app/Dockerfile
Johannes Zellner d9dfa47cf6 Bump version
2022-12-20 17:01:53 +01:00

13 lines
413 B
Docker

FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df
RUN mkdir -p /app/code /app/pkg
WORKDIR /app/code
ARG VERSION=2.41.0
RUN curl -L https://github.com/prometheus/prometheus/releases/download/v${VERSION}/prometheus-${VERSION}.linux-amd64.tar.gz | tar zxvf - --strip-components 1
COPY default_prometheus_variables.sh start.sh /app/pkg/
CMD [ "/app/pkg/start.sh" ]