🗑️ Clean up code

This commit is contained in:
2024-08-12 20:53:03 +08:00
parent 7a072988ce
commit 142e7c3434
58 changed files with 451 additions and 3233 deletions

View File

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