🚚 Rename package

This commit is contained in:
2024-02-18 11:20:22 +08:00
parent 3437d32273
commit 55a20e18bb
32 changed files with 1747 additions and 65 deletions

View File

@ -1,5 +1,5 @@
# Building Backend
FROM golang:alpine as passport-server
FROM golang:alpine as identity-server
RUN apk add nodejs npm
@ -14,8 +14,8 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -buildvcs -o /dist ./pkg/cmd/
# Runtime
FROM golang:alpine
COPY --from=passport-server /dist /passport/server
COPY --from=identity-server /dist /identity/server
EXPOSE 8444
CMD ["/passport/server"]
CMD ["/identity/server"]