Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to golang1.18.10 in eacruntime and webhook #2867

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docker/Dockerfile.alluxioruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the alluxioruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.application
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the fluidapp-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.csi
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the csi binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.dataset
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the dataset-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.eacruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the eacruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.goosefsruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the goosefsruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.jindoruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the jindoruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.juicefsruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the juicefsruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile.thinruntime
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the thinruntime-controller manager binary
FROM golang:1.18 AS builder

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.webhook
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build the dataset-controller manager binary
FROM golang:1.18 AS builder
# Build the webhook binary

# using golang:1.18.10 as builder
FROM golang:1.18@sha256:50c889275d26f816b5314fc99f55425fa76b18fcaf16af255f5d57f09e1f48da AS builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down