Compare commits

...

2 Commits

Author SHA1 Message Date
root 11079ca90a fix(deploy): correct JWT_SECRET default value syntax in docker-compose.yaml
Deployment Config CI / Deployment Config (push) Successful in 2m37s
Backend CI / Backend (push) Failing after 8m57s
2026-05-01 21:34:54 +08:00
root e252189fa3 fix(docker): update Go version in Dockerfile and go.mod to 1.26.2 2026-05-01 21:32:06 +08:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ name: geo-rankly
x-app-env: &app-env
CONFIG_PATH: /app/configs/config.yaml
JWT_SECRET: ${JWT_SECRET:geo-Aa123456-change-me-in-production}
JWT_SECRET: ${JWT_SECRET:-geo-Aa123456-change-me-in-production}
JWT_ACCESS_TTL: ${JWT_ACCESS_TTL:-15m}
JWT_REFRESH_TTL: ${JWT_REFRESH_TTL:-720h}
SCHEDULER_INTERNAL_METRICS_TOKEN: ${SCHEDULER_INTERNAL_METRICS_TOKEN:-}
+1 -1
View File
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1
# ─── Stage 1: Build Go binaries ───────────────────────────────────────────────
FROM golang:1.23-alpine AS builder
FROM golang:1.26.2-alpine AS builder
ARG TARGETOS
ARG TARGETARCH
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/geo-platform/tenant-api
go 1.23
go 1.26.2
require (
github.com/alicebob/miniredis/v2 v2.37.0