forked from stackblitz/bolt.new
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from hillct/add-docker-support
fix: further enhance Docker and docker-comose support with staged, --target and --profile support, plus Coolify Deployment Support
- Loading branch information
Showing
6 changed files
with
222 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,67 @@ | ||
# Use an official Node.js runtime as the base image | ||
FROM node:20.15.1 | ||
ARG BASE=node:20.18.0 | ||
FROM ${BASE} AS base | ||
|
||
# Set the working directory in the container | ||
WORKDIR /app | ||
|
||
# Install pnpm | ||
RUN npm install -g [email protected] | ||
# Install dependencies (this step is cached as long as the dependencies don't change) | ||
COPY package.json pnpm-lock.yaml ./ | ||
|
||
# Copy package.json and pnpm-lock.yaml (if available) | ||
COPY package.json pnpm-lock.yaml* ./ | ||
RUN corepack enable pnpm && pnpm install | ||
|
||
# Install dependencies | ||
RUN pnpm install | ||
|
||
# Copy the rest of the application code | ||
# Copy the rest of your app's source code | ||
COPY . . | ||
|
||
# Build the application | ||
RUN pnpm run build | ||
# Expose the port the app runs on | ||
EXPOSE 5173 | ||
|
||
# Production image | ||
FROM base AS bolt-ai-production | ||
|
||
# Define environment variables with default values or let them be overridden | ||
ARG GROQ_API_KEY | ||
ARG OPENAI_API_KEY | ||
ARG ANTHROPIC_API_KEY | ||
ARG OPEN_ROUTER_API_KEY | ||
ARG GOOGLE_GENERATIVE_AI_API_KEY | ||
ARG OLLAMA_API_BASE_URL | ||
ARG VITE_LOG_LEVEL=debug | ||
|
||
ENV WRANGLER_SEND_METRICS=false \ | ||
GROQ_API_KEY=${GROQ_API_KEY} \ | ||
OPENAI_API_KEY=${OPENAI_API_KEY} \ | ||
ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} \ | ||
OPEN_ROUTER_API_KEY=${OPEN_ROUTER_API_KEY} \ | ||
GOOGLE_GENERATIVE_AI_API_KEY=${GOOGLE_GENERATIVE_AI_API_KEY} \ | ||
OLLAMA_API_BASE_URL=${OLLAMA_API_BASE_URL} \ | ||
VITE_LOG_LEVEL=${VITE_LOG_LEVEL} | ||
|
||
# Pre-configure wrangler to disable metrics | ||
RUN mkdir -p /root/.config/.wrangler && \ | ||
echo '{"enabled":false}' > /root/.config/.wrangler/metrics.json | ||
|
||
RUN npm run build | ||
|
||
CMD [ "pnpm", "run", "dockerstart"] | ||
|
||
# Development image | ||
FROM base AS bolt-ai-development | ||
|
||
# Make sure bindings.sh is executable | ||
RUN chmod +x bindings.sh | ||
# Define the same environment variables for development | ||
ARG GROQ_API_KEY | ||
ARG OPENAI_API_KEY | ||
ARG ANTHROPIC_API_KEY | ||
ARG OPEN_ROUTER_API_KEY | ||
ARG GOOGLE_GENERATIVE_AI_API_KEY | ||
ARG OLLAMA_API_BASE_URL | ||
ARG VITE_LOG_LEVEL=debug | ||
|
||
# Expose the port the app runs on (adjust if you specified a different port) | ||
EXPOSE 3000 | ||
ENV GROQ_API_KEY=${GROQ_API_KEY} \ | ||
OPENAI_API_KEY=${OPENAI_API_KEY} \ | ||
ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} \ | ||
OPEN_ROUTER_API_KEY=${OPEN_ROUTER_API_KEY} \ | ||
GOOGLE_GENERATIVE_AI_API_KEY=${GOOGLE_GENERATIVE_AI_API_KEY} \ | ||
OLLAMA_API_BASE_URL=${OLLAMA_API_BASE_URL} \ | ||
VITE_LOG_LEVEL=${VITE_LOG_LEVEL} | ||
|
||
# Start the application | ||
CMD ["pnpm", "run", "start"] | ||
RUN mkdir -p ${WORKDIR}/run | ||
CMD pnpm run dev --host |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
services: | ||
bolt-ai: | ||
image: bolt-ai:production | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
target: bolt-ai-production | ||
ports: | ||
- "5173:5173" | ||
env_file: ".env.local" | ||
environment: | ||
- NODE_ENV=production | ||
- COMPOSE_PROFILES=production | ||
# No strictly neded but serving as hints for Coolify | ||
- PORT=5173 | ||
- GROQ_API_KEY=${GROQ_API_KEY} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} | ||
- OPEN_ROUTER_API_KEY=${OPEN_ROUTER_API_KEY} | ||
- GOOGLE_GENERATIVE_AI_API_KEY=${GOOGLE_GENERATIVE_AI_API_KEY} | ||
- OLLAMA_API_BASE_URL=${OLLAMA_API_BASE_URL} | ||
- VITE_LOG_LEVEL=${VITE_LOG_LEVEL:-debug} | ||
command: pnpm run dockerstart | ||
profiles: | ||
- production # This service only runs in the production profile | ||
|
||
bolt-ai-dev: | ||
image: bolt-ai:development | ||
build: | ||
target: bolt-ai-development | ||
environment: | ||
- NODE_ENV=development | ||
- COMPOSE_PROFILES=development | ||
- PORT=5173 | ||
- GROQ_API_KEY=${GROQ_API_KEY} | ||
- OPENAI_API_KEY=${OPENAI_API_KEY} | ||
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY} | ||
- OPEN_ROUTER_API_KEY=${OPEN_ROUTER_API_KEY} | ||
- GOOGLE_GENERATIVE_AI_API_KEY=${GOOGLE_GENERATIVE_AI_API_KEY} | ||
- OLLAMA_API_BASE_URL=${OLLAMA_API_BASE_URL} | ||
- VITE_LOG_LEVEL=${VITE_LOG_LEVEL:-debug} | ||
volumes: | ||
- .:/app | ||
- /app/node_modules | ||
ports: | ||
- "5173:5173" # Same port, no conflict as only one runs at a time | ||
command: pnpm run dev --host 0.0.0.0 | ||
profiles: ["development", "default"] # Make development the default profile |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,11 @@ | |
"test:watch": "vitest", | ||
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .", | ||
"lint:fix": "npm run lint -- --fix", | ||
"start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 3000", | ||
"start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings", | ||
"dockerstart": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 5173 --no-show-interactive-dev-session", | ||
"dockerrun": "docker run -it -d --name bolt-ai-live -p 5173:5173 --env-file .env.local bolt-ai", | ||
"dockerbuild:prod": "docker build -t bolt-ai:production bolt-ai:latest --target bolt-ai-production .", | ||
"dockerbuild": "docker build -t bolt-ai:development -t bolt-ai:latest --target bolt-ai-development .", | ||
"typecheck": "tsc", | ||
"typegen": "wrangler types", | ||
"preview": "pnpm run build && pnpm run start" | ||
|
@@ -110,5 +114,6 @@ | |
}, | ||
"resolutions": { | ||
"@typescript-eslint/utils": "^8.0.0-alpha.30" | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters