mirror of
https://github.com/stackblitz/bolt.new
synced 2025-02-06 04:48:04 +00:00
Docker Additions
Added Dockerfile and docker-compose.yml, also adjusted start command to listen for all IP's and on Port 3000
This commit is contained in:
parent
50a501ecb1
commit
0ef30967dd
29
Dockerfile
Normal file
29
Dockerfile
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
# Use an official Node.js runtime as the base image
|
||||||
|
FROM node:20.15.1
|
||||||
|
|
||||||
|
# Set the working directory in the container
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Install pnpm
|
||||||
|
RUN npm install -g pnpm@9.4.0
|
||||||
|
|
||||||
|
# Copy package.json and pnpm-lock.yaml (if available)
|
||||||
|
COPY package.json pnpm-lock.yaml* ./
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
|
RUN pnpm install
|
||||||
|
|
||||||
|
# Copy the rest of the application code
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
# Build the application
|
||||||
|
RUN pnpm run build
|
||||||
|
|
||||||
|
# Make sure bindings.sh is executable
|
||||||
|
RUN chmod +x bindings.sh
|
||||||
|
|
||||||
|
# Expose the port the app runs on (adjust if you specified a different port)
|
||||||
|
EXPOSE 3000
|
||||||
|
|
||||||
|
# Start the application
|
||||||
|
CMD ["pnpm", "run", "start"]
|
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
services:
|
||||||
|
bolt-app:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
environment:
|
||||||
|
- NODE_ENV=production
|
||||||
|
# Add any other environment variables your app needs
|
||||||
|
# - OPENAI_API_KEY=${OPENAI_API_KEY}
|
||||||
|
# - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
|
||||||
|
# - GROQ_API_KEY=${GROQ_API_KEY}
|
||||||
|
volumes:
|
||||||
|
# This volume is for development purposes, allowing live code updates
|
||||||
|
# Comment out or remove for production
|
||||||
|
- .:/app
|
||||||
|
# This volume is to prevent node_modules from being overwritten by the above volume
|
||||||
|
- /app/node_modules
|
||||||
|
command: pnpm run start
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
node_modules:
|
@ -14,7 +14,7 @@
|
|||||||
"test:watch": "vitest",
|
"test:watch": "vitest",
|
||||||
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
|
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
|
||||||
"lint:fix": "npm run lint -- --fix",
|
"lint:fix": "npm run lint -- --fix",
|
||||||
"start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings",
|
"start": "bindings=$(./bindings.sh) && wrangler pages dev ./build/client $bindings --ip 0.0.0.0 --port 3000",
|
||||||
"typecheck": "tsc",
|
"typecheck": "tsc",
|
||||||
"typegen": "wrangler types",
|
"typegen": "wrangler types",
|
||||||
"preview": "pnpm run build && pnpm run start"
|
"preview": "pnpm run build && pnpm run start"
|
||||||
|
Loading…
Reference in New Issue
Block a user