Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
component: [ feature-server, feature-transformation-server, feast-operator ]
component: [ feature-server, feature-transformation-server, feast-operator, go-feature-server ]
env:
MAVEN_CACHE: gs://feast-templocation-kf-feast/.m2.2020-08-19.tar
REGISTRY: quay.io/feastdev
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,12 @@ build-feast-operator-docker: ## Build Feast Operator Docker image
VERSION=$(VERSION) \
$(MAKE) docker-build

build-go-feature-server: ## Build Go Feature Server Docker iamge
make compile-protos-go
docker buildx build --build-arg VERSION=$(VERSION) \
-t $(REGISTRY)/go-feature-server:$(VERSION) \
-f go/infra/docker/feature-server/Dockerfile --load .
Comment thread
shuchu marked this conversation as resolved.
Outdated
Comment thread
shuchu marked this conversation as resolved.
Outdated

##@ Dev images

build-feature-server-dev: ## Build Feature Server Dev Docker image
Expand Down