prometheus-server-app/Dockerfile
Johannes Zellner c8facf0e6d Bump version
2022-12-14 14:51:11 +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.40.7
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" ]