mirror of
https://github.com/System-End/daydream-phoenix.git
synced 2026-04-19 22:05:07 +00:00
38 lines
785 B
Docker
38 lines
785 B
Docker
# Use Node.js LTS version
|
|
FROM node:20-alpine
|
|
|
|
# Install curl
|
|
RUN apk add --no-cache curl
|
|
|
|
# Set the working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package.json bun.lock* package-lock.json* ./
|
|
|
|
# Install all dependencies (needed for build)
|
|
RUN npm ci
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Build arguments for environment variables
|
|
ARG AIRTABLE_API_KEY=""
|
|
ARG AIRTABLE_BASE_ID=""
|
|
ARG AIRTABLE_EMAILS_TABLE=""
|
|
ARG GEOCODER_API_KEY=""
|
|
|
|
# Set environment variables from build args
|
|
ENV AIRTABLE_API_KEY=$AIRTABLE_API_KEY
|
|
ENV AIRTABLE_BASE_ID=$AIRTABLE_BASE_ID
|
|
ENV AIRTABLE_EMAILS_TABLE=$AIRTABLE_EMAILS_TABLE
|
|
ENV GEOCODER_API_KEY=$GEOCODER_API_KEY
|
|
|
|
# Build the application
|
|
RUN npm run build
|
|
|
|
# Expose the port the app runs on
|
|
EXPOSE 3000
|
|
|
|
# Start the application
|
|
CMD ["node", "build"]
|