Merge pull request #11519 from influxdata/fix/docker-ca-certs
ci(docker): add ca-certificates to the docker buildpull/11521/head
commit
e2cedd0a87
|
@ -4,6 +4,10 @@ COPY influx /usr/bin/influx
|
||||||
|
|
||||||
EXPOSE 9999
|
EXPOSE 9999
|
||||||
|
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||||
|
ca-certificates \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY docker/influxd/entrypoint.sh /entrypoint.sh
|
COPY docker/influxd/entrypoint.sh /entrypoint.sh
|
||||||
ENTRYPOINT ["/entrypoint.sh"]
|
ENTRYPOINT ["/entrypoint.sh"]
|
||||||
CMD ["influxd"]
|
CMD ["influxd"]
|
||||||
|
|
Loading…
Reference in New Issue