Merge pull request #11520 from influxdata/chore/docker-image
chore(docker): Include ca-certificatespull/11700/head
commit
c67ab7faad
|
@ -1,13 +1,19 @@
|
||||||
FROM debian:stable-slim
|
FROM debian:stable-slim
|
||||||
COPY influxd /usr/bin/influxd
|
COPY influx influxd /usr/bin/
|
||||||
COPY influx /usr/bin/influx
|
|
||||||
|
|
||||||
EXPOSE 9999
|
EXPOSE 9999
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
ENV DEBIAN_FRONTEND noninteractive
|
||||||
ca-certificates \
|
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
COPY docker/influxd/entrypoint.sh /entrypoint.sh
|
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}
|
||||||
|
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
CMD ["influxd"]
|
CMD ["influxd"]
|
||||||
|
|
Loading…
Reference in New Issue