Skip to content

Commit

Permalink
chore(deps): bump alpine from 3.16.3 to 3.17.0
Browse files Browse the repository at this point in the history
Bumps alpine from 3.16.3 to 3.17.0.

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 24, 2022
1 parent 971592f commit dec6d3b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 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.16.3 as otelcol
FROM alpine:3.17.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.16.3 as certs
FROM alpine:3.17.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.16.3 as directories
FROM alpine:3.17.0 as directories
RUN mkdir /etc/otel/

FROM debian:11.5 as systemd
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.16.3 as otelcol
FROM alpine:3.17.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.16.3 as certs
FROM alpine:3.17.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.16.3 as directories
FROM alpine:3.17.0 as directories
RUN mkdir /etc/otel/

FROM debian:11.5 as systemd
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile_dev_fips
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM alpine:3.16.3 as otelcol
FROM alpine:3.17.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.16.3 as certs
FROM alpine:3.17.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.16.3 as directories
FROM alpine:3.17.0 as directories
RUN mkdir /etc/otel/

FROM debian:11.5 as systemd
Expand All @@ -16,7 +16,7 @@ RUN apt update && apt install -y systemd
# h stands for dereference of symbolic links
RUN tar czhf journalctl.tar.gz /bin/journalctl $(ldd /bin/journalctl | grep -oP "\/.*? ")

FROM alpine:3.16.3
FROM alpine:3.17.0
RUN apk update && apk add curl tar
RUN curl -LJ "https://go-boringcrypto.storage.googleapis.com/go1.18.7b7.linux-amd64.tar.gz" -o go.linux-amd64.tar.gz \
&& tar -C /usr/local -xzf go.linux-amd64.tar.gz \
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++ curl git
RUN make install-builder BUILDER_BIN_PATH=/bin
RUN make build BUILDER_BIN_PATH=/bin

FROM alpine:3.16.3 as certs
FROM alpine:3.17.0 as certs
RUN apk --update add ca-certificates

FROM alpine:3.16.3 as directories
FROM alpine:3.17.0 as directories
RUN mkdir /etc/otel/

FROM debian:11.5 as systemd
Expand Down

0 comments on commit dec6d3b

Please sign in to comment.