Files
Georgios Komninos cfb0440472 Upgrades scrapemate to v1.4.0 and Go 1.27.1 (#329)
- upgrade Scrapemate to v1.4.0
- update the project and Docker images to Go 1.27.1
- replace google/uuid usage with Go's standard uuid package
- migrate golangci-lint to v2 and fix lint issues
- update Dockerfiles for AMD64 and ARM64 compatibility
2026-09-13 10:59:25 +03:00

66 lines
1.6 KiB
Docker

# syntax=docker/dockerfile:1
ARG GO_VERSION=1.27.1
# Build stage
FROM golang:${GO_VERSION}-alpine AS builder
WORKDIR /app
# Install build dependencies
RUN apk add --no-cache git ca-certificates
# Copy go mod files
COPY go.mod go.sum ./
RUN go mod download
# Copy source code
COPY . .
# Build the gmapssaas binary (stripped and optimized)
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-w -s" -o /gmapssaas ./cmd/gmapssaas
# Final stage - Debian slim with Playwright Chromium dependencies
FROM debian:bookworm-slim
LABEL org.opencontainers.image.source=https://github.com/gosom/google-maps-scraper
WORKDIR /app
# Install Playwright dependencies for Chromium only + cleanup in same layer
# These are the system libraries that Playwright's Chromium needs to run
# The browser itself is downloaded at runtime by playwright-go
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
curl \
libnss3 \
libnspr4 \
libatk1.0-0 \
libatk-bridge2.0-0 \
libcups2 \
libdrm2 \
libdbus-1-3 \
libxkbcommon0 \
libxcomposite1 \
libxdamage1 \
libxfixes3 \
libxrandr2 \
libgbm1 \
libasound2 \
libpango-1.0-0 \
libcairo2 \
fonts-liberation \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/* \
&& rm -rf /usr/share/doc /usr/share/man /usr/share/locale
# Copy binary from builder
COPY --from=builder /gmapssaas /app/gmapssaas
# Copy migrations (needed for server mode)
COPY --from=builder /app/migrations /app/migrations
EXPOSE 8080
# Default to serve mode, can be overridden with "worker" argument
ENTRYPOINT ["/app/gmapssaas"]
CMD ["serve"]