Skip to content

Commit

Permalink
Try update Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
harelmo-lumigo committed Jun 9, 2024
1 parent 3c46909 commit fa51755
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions controller/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.20 as builder
FROM golang:1.21.8-alpine3.19 as builder
ARG TARGETOS
ARG TARGETARCH

Expand All @@ -21,7 +21,7 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o ma
FROM alpine:latest

# Be able to validate the TLS cert of the Lumigo SaaS endpoint
RUN apk add bash procps
RUN apk add bash procps

WORKDIR /
COPY --from=builder --chown=65532:65532 /workspace/manager .
Expand Down
4 changes: 2 additions & 2 deletions telemetryproxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Byuild the telemetry-proxy from sources
FROM golang:1.20-alpine AS telemetry-proxy-builder
FROM golang:1.21.8-alpine3.19 AS telemetry-proxy-builder

ARG version='dev'
ENV VERSION=${version}
Expand Down Expand Up @@ -32,7 +32,7 @@ FROM alpine:latest
# Be able to validate the TLS cert of the Lumigo SaaS endpoint
RUN apk add ca-certificates
# Update OtelCollector config on namespace file change
RUN apk add bash gomplate procps
RUN apk add bash gomplate procps

COPY --from=chmod-helper /lumigo /lumigo

Expand Down

0 comments on commit fa51755

Please sign in to comment.