From 63eef659560594067c7b091fbf7ba3e2d00a4cc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Aug 2021 10:07:21 -0400 Subject: [PATCH] Bump alpine from 3.14.0 to 3.14.1 in /cmd/otelcol (#607) Bumps alpine from 3.14.0 to 3.14.1. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- cmd/otelcol/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/otelcol/Dockerfile b/cmd/otelcol/Dockerfile index fe2f5cfd7de..ccaf8494fc9 100644 --- a/cmd/otelcol/Dockerfile +++ b/cmd/otelcol/Dockerfile @@ -1,13 +1,13 @@ -FROM alpine:3.14.0 as certs +FROM alpine:3.14.1 as certs RUN apk --update add ca-certificates -FROM alpine:3.14.0 AS otelcol +FROM alpine:3.14.1 AS otelcol COPY otelcol / # Note that this shouldn't be necessary, but in some cases the file seems to be # copied with the execute bit lost (see #1317) RUN chmod 755 /otelcol -FROM alpine:3.14.0 AS smartagent +FROM alpine:3.14.1 AS smartagent ARG SMART_AGENT_RELEASE RUN mkdir -p /usr/lib/splunk-otel-collector && \ SMART_AGENT=signalfx-agent-${SMART_AGENT_RELEASE#v}.tar.gz && \