Chore: Change custom_pocketbase to brawlset_server

This commit is contained in:
zuma 2025-04-24 16:06:45 +02:00
parent cf17e52424
commit f05bec6f17
7 changed files with 8 additions and 7 deletions

View file

@ -10,8 +10,7 @@ RUN go mod download
COPY backend/*.go ./
# Build
RUN CGO_ENABLED=0 GOOS=linux go build -o custom_pocketbase
RUN CGO_ENABLED=0 GOOS=linux go build .
FROM oven/bun:latest AS base
WORKDIR /usr/src/app
@ -39,7 +38,7 @@ WORKDIR /usr/src/app
ENV GO_ENV=production
COPY start_server.sh .
COPY --from=prerelease /usr/src/app/build .
COPY --from=gobuild /usr/src/app/custom_pocketbase .
COPY --from=gobuild /usr/src/app/brawlset_server .
COPY backend/pb_migrations ./pb_migrations
# run the app