mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Dockerfile: Optimize and consolidate steps (#9180)
* Moving up workdir will make mkdir call redundant * Consolidate into a single RUN instruction * Prefix etc/prometheus with a slash (it only worked because WORKDIR was / ) Signed-off-by: Manuel Rüger <manuel@rueg.eu>
This commit is contained in:
parent
a05b510fc3
commit
e5b1b15dc3
|
@ -14,14 +14,13 @@ COPY LICENSE /LICENSE
|
||||||
COPY NOTICE /NOTICE
|
COPY NOTICE /NOTICE
|
||||||
COPY npm_licenses.tar.bz2 /npm_licenses.tar.bz2
|
COPY npm_licenses.tar.bz2 /npm_licenses.tar.bz2
|
||||||
|
|
||||||
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/
|
WORKDIR /prometheus
|
||||||
RUN mkdir -p /prometheus && \
|
RUN ln -s /usr/share/prometheus/console_libraries /usr/share/prometheus/consoles/ /etc/prometheus/ && \
|
||||||
chown -R nobody:nobody etc/prometheus /prometheus
|
chown -R nobody:nobody /etc/prometheus /prometheus
|
||||||
|
|
||||||
USER nobody
|
USER nobody
|
||||||
EXPOSE 9090
|
EXPOSE 9090
|
||||||
VOLUME [ "/prometheus" ]
|
VOLUME [ "/prometheus" ]
|
||||||
WORKDIR /prometheus
|
|
||||||
ENTRYPOINT [ "/bin/prometheus" ]
|
ENTRYPOINT [ "/bin/prometheus" ]
|
||||||
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
CMD [ "--config.file=/etc/prometheus/prometheus.yml", \
|
||||||
"--storage.tsdb.path=/prometheus", \
|
"--storage.tsdb.path=/prometheus", \
|
||||||
|
|
Loading…
Reference in a new issue