Merge pull request #11519 from influxdata/fix/docker-ca-certs

ci(docker): add ca-certificates to the docker build
pull/11521/head
Chris Goller 2019-01-23 17:21:45 -06:00 committed by GitHub
commit e2cedd0a87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"]