influxdb/docker/influxd/Dockerfile

20 lines
378 B
Docker
Raw Normal View History

2018-08-31 17:58:21 +00:00
FROM debian:stable-slim
COPY influx influxd /usr/bin/
2018-08-31 17:58:21 +00:00
EXPOSE 9999
ENV DEBIAN_FRONTEND noninteractive
COPY docker/influxd/entrypoint.sh /entrypoint.sh
RUN apt-get update \
&& apt-get install -y \
ca-certificates \
tzdata \
&& apt-get clean autoclean \
&& apt-get autoremove --yes \
&& rm -rf /var/lib/{apt,dpkg,cache,log}
2018-08-31 17:58:21 +00:00
ENTRYPOINT ["/entrypoint.sh"]
CMD ["influxd"]