ci(docker): add ca-certificates to the docker build

pull/11519/head
Chris Goller 2019-01-23 17:14:35 -06:00
parent c75aa87382
commit f76a8a93e8
1 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,10 @@ COPY influx /usr/bin/influx
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
ENTRYPOINT ["/entrypoint.sh"]
CMD ["influxd"]