Dockerfile 614 B

1234567891011121314151617181920
  1. FROM node:lts-alpine as build-frontend
  2. WORKDIR /app
  3. COPY ./frontend/package*.json ./
  4. RUN npm install
  5. COPY ./frontend/ .
  6. RUN npm run build
  7. FROM golang:1.24-alpine AS build-backend
  8. RUN mkdir /app
  9. ADD . /app
  10. WORKDIR /app
  11. RUN CGO_ENABLED=0 GOOS=linux go build -o pocketbase .
  12. RUN mkdir /output && mv /app/pocketbase /output
  13. COPY --from=build-frontend /app/dist/assets/index.js /output/pb_public/comment.js
  14. FROM alpine:latest AS production
  15. RUN apk update && apk add ca-certificates && rm -rf /var/cache/apk/*
  16. COPY --from=build-backend /output .
  17. EXPOSE 8090
  18. ENTRYPOINT ["./pocketbase", "serve", "--http=0.0.0.0:8090"]