Fix Docker build (golang:1.26-alpine), update env config for face service
Some checks are pending
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run

This commit is contained in:
Chris Anderson 2026-06-26 05:53:58 +02:00
parent 5bce1bd39b
commit ad0e78c9c9
2 changed files with 11 additions and 1 deletions

View File

@ -4,3 +4,13 @@ HATCH_HOSTNAME=hatch.example.com
# Base URL for SSE and self-referencing links within the UI. # Base URL for SSE and self-referencing links within the UI.
HATCH_BASE_URL=https://hatch.example.com HATCH_BASE_URL=https://hatch.example.com
# AWS Rekognition Configuration (optional — set FACE_SERVICE_ENABLED=true to enable)
FACE_SERVICE_ENABLED=false
AWS_REGION=us-east-1
REKOGNITION_COLLECTION=hatch-faces
REKOGNITION_MAX_FACES=10
REKOGNITION_THRESHOLD=80.0
# Redis URL (optional — used for rate-limit backing store)
REDIS_URL=

View File

@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1 # syntax=docker/dockerfile:1
# ---- build stage ---- # ---- build stage ----
FROM golang:1.25-alpine AS build FROM golang:1.26-alpine AS build
WORKDIR /src WORKDIR /src