File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676 - 6379:6379
7777
7878 redis-sentinel :
79- image : bitnami /redis-sentinel
79+ image : bitnamilegacy /redis-sentinel
8080 env :
8181 REDIS_MASTER_HOST : redis
8282 REDIS_MASTER_SET : redis-1
@@ -86,15 +86,15 @@ jobs:
8686 - 26379:26379
8787
8888 protectedredis :
89- image : bitnami /redis
89+ image : bitnamilegacy /redis
9090 ports :
9191 - 6380:6380
9292 env :
9393 REDIS_PORT_NUMBER : 6380
9494 REDIS_PASSWORD : AthensPass1
9595
9696 redis-sentinel-protected-redis :
97- image : bitnami /redis-sentinel
97+ image : bitnamilegacy /redis-sentinel
9898 env :
9999 REDIS_MASTER_HOST : protectedredis
100100 REDIS_MASTER_PORT_NUMBER : 6380
Original file line number Diff line number Diff line change 11VERSION = "unset"
22DATE =$(shell date -u +% Y-% m-% d-% H:% M:% S-% Z)
33
4- GOLANGCI_LINT_VERSION =v1.61.0
4+ GOLANGCI_LINT_VERSION =v2.1.6
55
66ifndef GOLANG_VERSION
7- override GOLANG_VERSION = 1.23.5
7+ override GOLANG_VERSION = 1.25.1
88endif
99
1010.PHONY : build
@@ -22,7 +22,7 @@ athens:
2222# to perform some CI build steps, instead of relying on them being installed locally
2323.PHONY : build-image
2424build-image :
25- docker build -t athens-build ./scripts/build-image
25+ docker build -t athens-build --build-arg GOLANG_VERSION= ${GOLANG_VERSION} ./scripts/build-image
2626
2727.PHONY : run
2828run : # # run the athens proxy with dev configs
Original file line number Diff line number Diff line change 55# You can override the Go version used to build the image.
66# See project Makefile if using make.
77# See docker --build-arg if building directly.
8- ARG GOLANG_VERSION=1.23.5
8+ ARG GOLANG_VERSION=1.25.1
99
1010FROM golang:${GOLANG_VERSION}-alpine AS builder
1111
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ services:
8282 ports :
8383 - 6379:6379
8484 redis-sentinel :
85- image : bitnami /redis-sentinel
85+ image : bitnamilegacy /redis-sentinel
8686 environment :
8787 - REDIS_MASTER_HOST=redis
8888 - REDIS_MASTER_SET=redis-1
Original file line number Diff line number Diff line change 1- FROM golang:1.23.5-bookworm
1+ ARG GOLANG_VERSION=1.25.1
2+ FROM golang:${GOLANG_VERSION}-bookworm
23
34WORKDIR /tmp
45
You can’t perform that action at this time.
0 commit comments