🔨 Add workflow and dockerfile
All checks were successful
release-nightly / build-docker (push) Successful in 3m19s

This commit is contained in:
2024-01-30 18:34:37 +08:00
parent e87da59026
commit 6d056b6e1d
50 changed files with 60 additions and 1684 deletions

21
Dockerfile Normal file
View File

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