File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
devops/docker/lake-builder Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1313# See the License for the specific language governing permissions and
1414# limitations under the License.
1515
16- FROM mcr.microsoft.com/devcontainers/go:1-1.23 -bookworm
16+ FROM mcr.microsoft.com/devcontainers/go:1-1.24 -bookworm
1717
1818ENV PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib:/usr/local/lib/pkgconfig
1919ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ FROM --platform=linux/arm64 debian:bookworm as debian-arm64
3131RUN apt-get update
3232RUN apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev
3333
34- FROM --platform=$BUILDPLATFORM golang:1.23 -bookworm as builder
34+ FROM --platform=$BUILDPLATFORM golang:1.24 -bookworm as builder
3535
3636# docker build --build-arg GOPROXY=https://goproxy.io,direct -t mericodev/lake .
3737ARG GOPROXY=
Original file line number Diff line number Diff line change 11module github.com/apache/incubator-devlake
22
3- go 1.23
3+ go 1.24
44
55require (
66 github.com/aws/aws-sdk-go v1.55.6
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ FROM --platform=linux/amd64 debian:bullseye as debian-amd64
1818RUN apt-get -y update && apt -y upgrade &&\
1919 apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev
2020
21- FROM golang:1.23 -bullseye as builder
21+ FROM golang:1.24 -bullseye as builder
2222
2323# Base dependencies
2424RUN apt-get -y update && apt -y upgrade &&\
@@ -55,7 +55,7 @@ COPY --from=builder /tmp/deps/include/ /usr/include/
5555ENV PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
5656
5757# Install Golang
58- RUN curl -L https://git.io/vQhTU | bash -s -- --version 1.23 .0
58+ RUN curl -L https://git.io/vQhTU | bash -s -- --version 1.24 .0
5959RUN mv /root/go /go &&\
6060 mv /root/.go /usr/local/go &&\
6161 ln -sf /usr/local/go/bin/* /usr/bin
You can’t perform that action at this time.
0 commit comments