Skip to content

Commit e5967cb

Browse files
jeremyederclaude
andcommitted
fix: public-api Dockerfile Go version + add to push-all
- Fix Go version mismatch (golang:1.23-alpine -> 1.24-alpine) that prevented CI from building vteam_public_api since dee5f79 - Add vteam_public_api to push-all target so it gets pushed to registry Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 6945225 commit e5967cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ registry-login: ## Login to container registry
172172

173173
push-all: registry-login ## Push all images to registry
174174
@echo "$(COLOR_BLUE)$(COLOR_RESET) Pushing images to $(REGISTRY)..."
175-
@for image in $(FRONTEND_IMAGE) $(BACKEND_IMAGE) $(OPERATOR_IMAGE) $(RUNNER_IMAGE) $(STATE_SYNC_IMAGE); do \
175+
@for image in $(FRONTEND_IMAGE) $(BACKEND_IMAGE) $(OPERATOR_IMAGE) $(RUNNER_IMAGE) $(STATE_SYNC_IMAGE) $(PUBLIC_API_IMAGE); do \
176176
echo " Tagging and pushing $$image..."; \
177177
$(CONTAINER_ENGINE) tag $$image $(REGISTRY)/$$image && \
178178
$(CONTAINER_ENGINE) push $(REGISTRY)/$$image; \

components/public-api/Dockerfile

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

44
WORKDIR /app
55

0 commit comments

Comments
 (0)