32 lines
604 B
Docker
32 lines
604 B
Docker
# Development Dockerfile (for npm run dev)
|
|
FROM node:20-alpine
|
|
|
|
# Install build dependencies for better-sqlite3
|
|
RUN apk add --no-cache python3 make g++
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install all dependencies (including dev dependencies)
|
|
RUN npm install
|
|
|
|
# Copy app source
|
|
COPY . .
|
|
|
|
# Create directory for database
|
|
RUN mkdir -p /app/data
|
|
|
|
# Expose port
|
|
EXPOSE 3000
|
|
|
|
# Set environment to development and configure for external access
|
|
ENV NODE_ENV=development
|
|
ENV HOSTNAME=0.0.0.0
|
|
ENV PORT=3000
|
|
|
|
# Start the development server
|
|
CMD ["npm", "run", "dev"]
|