Skip to content

Commit

Permalink
chore(deps): bump alpine from 3.14 to 3.15.0 (#351)
Browse files Browse the repository at this point in the history
Bumps alpine from 3.14 to 3.15.0.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Patryk Małek <[email protected]>
  • Loading branch information
dependabot[bot] and pmalek authored Nov 29, 2021
1 parent 4e8408f commit 09e86f4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.14 as otelcol
FROM alpine:3.15.0 as otelcol
COPY otelcol-sumo /
# This shouldn't be necessary but sometimes we end up with execution bit not set.
# ref: https://github.com/open-telemetry/opentelemetry-collector/issues/1317
RUN chmod 755 /otelcol-sumo

FROM alpine:3.14 as certs
FROM alpine:3.15.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.14 as directories
FROM alpine:3.15.0 as directories
RUN mkdir /etc/otel/

FROM scratch
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile_dev
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.14 as otelcol
FROM alpine:3.15.0 as otelcol
COPY otelcol-sumo /
# This shouldn't be necessary but sometimes we end up with execution bit not set.
# ref: https://github.com/open-telemetry/opentelemetry-collector/issues/1317
RUN chmod 755 /otelcol-sumo

FROM alpine:3.14 as certs
FROM alpine:3.15.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.14 as directories
FROM alpine:3.15.0 as directories
RUN mkdir /etc/otel/

FROM golang:1.17.3
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile_local
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ RUN apk --update add make gcc g++
RUN make install
RUN make build

FROM alpine:3.14 as certs
FROM alpine:3.15.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.14 as directories
FROM alpine:3.15.0 as directories
RUN mkdir /etc/otel/

FROM scratch
Expand Down

0 comments on commit 09e86f4

Please sign in to comment.