Files
bookhoard/Dockerfile
T
john-okeefe 08e80ae84b refactor: reorganize project structure and update configurations
- Move migrations/ to database/schema/ for clarity on database schema definitions
- Move sqlc.yaml to internal/database/ to group with database code
- Move static/ to cmd/server/static/ to co-locate with server
- Update all configuration files and documentation
- Follow Go project conventions for better organization
2026-01-24 23:40:31 -05:00

60 lines
1.2 KiB
Docker

# Build stage
FROM golang:1.25-alpine AS builder
WORKDIR /app
# Install sqlc
RUN go install github.com/sqlc-dev/sqlc/cmd/sqlc@latest
# Install templ
RUN go install github.com/a-h/templ/cmd/templ@latest
# Copy source code
COPY . .
# Download dependencies
RUN go mod tidy
# Install Node.js and npm for Tailwind CSS building
RUN apk add --no-cache nodejs npm
# Copy package files and install npm dependencies
COPY package*.json ./
RUN npm install
# Copy source code (after npm to avoid re-running npm install on code changes)
COPY . .
# Generate sqlc code
RUN sqlc generate
# Generate templ code
RUN templ generate
# Build Tailwind CSS and download htmx
RUN npm run build:css:prod
RUN npm run postinstall
# Build the application
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main ./cmd/server
# Final stage
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
# Copy the binary from builder stage
COPY --from=builder /app/main .
# Copy database schema (if needed for initialization)
COPY --from=builder /app/database/schema ./database/schema
# Copy templates
COPY --from=builder /app/templates ./templates
# Expose port
EXPOSE 8765
# Run the binary
CMD ["./main"]