2024-11-03 15:31:57 +02:00
|
|
|
# Build stage for Playwright dependencies
|
2025-06-14 07:06:13 +03:00
|
|
|
FROM golang:1.24.4-bullseye AS playwright-deps
|
2024-11-03 15:31:57 +02:00
|
|
|
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/browsers
|
2024-12-22 17:04:41 +02:00
|
|
|
#ENV PLAYWRIGHT_DRIVER_PATH=/opt/
|
2024-11-03 15:31:57 +02:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
curl \
|
|
|
|
|
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
|
|
|
|
|
&& apt-get install -y --no-install-recommends nodejs \
|
|
|
|
|
&& apt-get clean \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
|
&& go install github.com/playwright-community/playwright-go/cmd/playwright@latest \
|
|
|
|
|
&& mkdir -p /opt/browsers \
|
2024-12-22 17:04:41 +02:00
|
|
|
&& playwright install chromium --with-deps
|
2024-11-03 15:31:57 +02:00
|
|
|
|
|
|
|
|
# Build stage
|
2025-05-10 09:06:07 +03:00
|
|
|
FROM golang:1.24.3-bullseye AS builder
|
2023-04-22 19:31:41 +03:00
|
|
|
WORKDIR /app
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
|
RUN go mod download
|
|
|
|
|
COPY . .
|
2024-11-03 15:31:57 +02:00
|
|
|
RUN CGO_ENABLED=0 go build -ldflags="-w -s" -o /usr/bin/google-maps-scraper
|
|
|
|
|
|
|
|
|
|
# Final stage
|
|
|
|
|
FROM debian:bullseye-slim
|
|
|
|
|
ENV PLAYWRIGHT_BROWSERS_PATH=/opt/browsers
|
|
|
|
|
ENV PLAYWRIGHT_DRIVER_PATH=/opt
|
|
|
|
|
|
|
|
|
|
# Install only the necessary dependencies in a single layer
|
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
|
ca-certificates \
|
|
|
|
|
libnss3 \
|
|
|
|
|
libnspr4 \
|
|
|
|
|
libatk1.0-0 \
|
|
|
|
|
libatk-bridge2.0-0 \
|
|
|
|
|
libcups2 \
|
|
|
|
|
libdrm2 \
|
|
|
|
|
libdbus-1-3 \
|
|
|
|
|
libxkbcommon0 \
|
|
|
|
|
libatspi2.0-0 \
|
|
|
|
|
libx11-6 \
|
|
|
|
|
libxcomposite1 \
|
|
|
|
|
libxdamage1 \
|
|
|
|
|
libxext6 \
|
|
|
|
|
libxfixes3 \
|
|
|
|
|
libxrandr2 \
|
|
|
|
|
libgbm1 \
|
|
|
|
|
libpango-1.0-0 \
|
|
|
|
|
libcairo2 \
|
|
|
|
|
libasound2 \
|
|
|
|
|
&& apt-get clean \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
COPY --from=playwright-deps /opt/browsers /opt/browsers
|
2024-12-22 17:04:41 +02:00
|
|
|
COPY --from=playwright-deps /root/.cache/ms-playwright-go /opt/ms-playwright-go
|
2024-11-03 15:31:57 +02:00
|
|
|
|
|
|
|
|
RUN chmod -R 755 /opt/browsers \
|
|
|
|
|
&& chmod -R 755 /opt/ms-playwright-go
|
|
|
|
|
|
|
|
|
|
COPY --from=builder /usr/bin/google-maps-scraper /usr/bin/
|
2023-04-22 19:31:41 +03:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["google-maps-scraper"]
|