- Add python3 and build-essential to builder stage for bcrypt/sharp compilation - Change libasound2 to libasound2t64 for Debian bookworm compatibility - Copy pre-built node_modules from builder instead of re-running npm install - Prune dev dependencies in builder for smaller production image 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
72 lines
1.7 KiB
Docker
72 lines
1.7 KiB
Docker
# Build stage
|
|
# Image: code.cannabrands.app/creationshop/dispensary-scraper
|
|
FROM code.cannabrands.app/creationshop/node:20-slim AS builder
|
|
|
|
# Install build tools for native modules (bcrypt, sharp)
|
|
RUN apt-get update && apt-get install -y \
|
|
python3 \
|
|
build-essential \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# Prune dev dependencies for smaller production image
|
|
RUN npm prune --production
|
|
|
|
# Production stage
|
|
FROM code.cannabrands.app/creationshop/node:20-slim
|
|
|
|
# Build arguments for version info
|
|
ARG APP_BUILD_VERSION=dev
|
|
ARG APP_GIT_SHA=unknown
|
|
ARG APP_BUILD_TIME=unknown
|
|
ARG CONTAINER_IMAGE_TAG=local
|
|
|
|
# Set version info as environment variables
|
|
ENV APP_BUILD_VERSION=${APP_BUILD_VERSION}
|
|
ENV APP_GIT_SHA=${APP_GIT_SHA}
|
|
ENV APP_BUILD_TIME=${APP_BUILD_TIME}
|
|
ENV CONTAINER_IMAGE_TAG=${CONTAINER_IMAGE_TAG}
|
|
|
|
# Install Chromium dependencies and curl for HTTP requests
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
chromium \
|
|
fonts-liberation \
|
|
libnss3 \
|
|
libxss1 \
|
|
libasound2t64 \
|
|
libatk-bridge2.0-0 \
|
|
libgtk-3-0 \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
|
|
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/dist ./dist
|
|
|
|
# Copy migrations for auto-migrate on startup
|
|
COPY migrations ./migrations
|
|
|
|
# Create local images directory for when MinIO is not configured
|
|
RUN mkdir -p /app/public/images/products
|
|
|
|
# Copy static downloads (plugin files, etc.)
|
|
COPY public/downloads /app/public/downloads
|
|
|
|
EXPOSE 3010
|
|
|
|
CMD ["node", "dist/index.js"]
|