Skip to content

Commit 3ff4a67

Browse files
committed
Updates golang base image version
Updates the golang base image version in the Dockerfile from 1.21-alpine to 1.24-alpine. This ensures that the application is built and runs with the latest stable version of Go, which may include bug fixes, performance improvements, and new features.
1 parent a14625e commit 3ff4a67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.21-alpine AS builder
2+
FROM golang:1.24-alpine AS builder
33

44
# Install build dependencies
55
RUN apk add --no-cache git ca-certificates tzdata
@@ -44,4 +44,4 @@ RUN chown -R appuser:appuser /app
4444
USER appuser
4545

4646
# Set the entrypoint
47-
ENTRYPOINT ["/app/atest-ext-ai"]
47+
ENTRYPOINT ["/app/atest-ext-ai"]

0 commit comments

Comments
 (0)