This commit is contained in:
2022-01-10 00:47:07 +08:00
parent cfc33380b0
commit f822d38b55
16 changed files with 0 additions and 732 deletions
View File
-21
View File
@@ -1,21 +0,0 @@
FROM golang:1.17 as builder
ENV GO111MODULE on
ENV GOPROXY https://goproxy.io,direct
WORKDIR /go/cache
ADD go.mod .
ADD go.sum .
RUN go mod download
WORKDIR /go/src
ADD . .
RUN go mod tidy
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o api_example_api ./app/api/example_api
FROM alpine as example_api
WORKDIR /go/src
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
COPY --from=builder /go/src/api_example_api ./
ENV TZ=Asia/Shanghai
RUN chmod +x ./api_example_api
LABEL io.portainer.accesscontrol.teams="admin"
EXPOSE 8080
CMD ["./api_example_api"]
-24
View File
@@ -1,24 +0,0 @@
package main
import (
"context"
"git.icechen.cn/${REPO_OWNER}/${REPO_NAME}/pkg/proto/example_service"
"git.icechen.cn/${REPO_OWNER}/${REPO_NAME}/pkg/rpc"
"google.golang.org/protobuf/types/known/emptypb"
)
func main() {
app := fiber.New()
app.Get("/test", func(c *fiber.Ctx) error {
userInfo, err := example_service.NewUserClient(rpc.GetServiceConn("example_service")).SayHello(context.TODO(), &emptypb.Empty{})
if err != nil {
return err
}
return c.JSON(userInfo.Name)
})
err := app.Listen(":8080")
if err != nil {
panic(err)
}
}
@@ -1 +0,0 @@
package model