Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build protobuf in dockerfile for all services #1386

Merged
merged 6 commits into from
Mar 7, 2024
Merged
Changes from all commits
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/build-images.yml
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@ jobs:
setup-qemu: true
- file: ./src/currencyservice/Dockerfile
tag_suffix: currencyservice
context: ./src/currencyservice
context: ./
setup-qemu: true
- file: ./src/emailservice/Dockerfile
tag_suffix: emailservice
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -52,3 +52,7 @@ test/tracetesting/tracetesting-vars.yaml
/src/paymentservice/demo.proto
/src/recommendationservice/demo_pb2*.py
/src/shippingservice/proto/
/src/productcatalogservice/genproto
/src/currencyservice/proto
/src/checkoutservice/genproto
/src/accountingservice/genproto
3 changes: 2 additions & 1 deletion docker-compose.minimal.yml
Original file line number Diff line number Diff line change
@@ -126,7 +126,8 @@ services:
image: ${IMAGE_NAME}:${DEMO_VERSION}-currencyservice
container_name: currency-service
build:
context: ./src/currencyservice
context: ./
dockerfile: ./src/currencyservice/Dockerfile
cache_from:
- ${IMAGE_NAME}:${IMAGE_VERSION}-currencyservice
deploy:
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -157,7 +157,8 @@ services:
image: ${IMAGE_NAME}:${DEMO_VERSION}-currencyservice
container_name: currency-service
build:
context: ./src/currencyservice
context: ./
dockerfile: ./src/currencyservice/Dockerfile
cache_from:
- ${IMAGE_NAME}:${IMAGE_VERSION}-currencyservice
deploy:
7 changes: 7 additions & 0 deletions src/accountingservice/Dockerfile
Original file line number Diff line number Diff line change
@@ -3,9 +3,16 @@


FROM golang:1.22.0-alpine AS builder
RUN apk update && apk add --no-cache make protobuf-dev
RUN go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
RUN go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest

WORKDIR /usr/src/app/

COPY ./src/accountingservice/ ./
COPY ./pb/ ./pb

RUN protoc -I ./pb ./pb/demo.proto --go_out=./ --go-grpc_out=./
RUN go build -o /go/bin/accountingservice/

# -----------------------------------------------------------------------------
Loading
Loading