61299a33c4
Mirror to GitHub / mirror (push) Successful in 26s
Test and Lint / backend-test (push) Successful in 1m23s
continuous-integration/drone/push Build is passing
Test and Lint / frontend-test (push) Successful in 2m12s
Version and Release / version-bump (push) Successful in 39s
Version and Release / trigger-drone (push) Successful in 3s
- Updated frontend to Node 20 to fix Vite crypto.hash error - Removed mailhog service as not needed for development - Updated email configuration to be disabled by default in dev - Fixed frontend port mapping to use 3005 consistently - Added script to show/reset admin credentials - Removed unnecessary storage volume mount 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
367 B
Docker
19 lines
367 B
Docker
# Dockerfile.dev - Development configuration for frontend
|
|
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies
|
|
RUN npm ci --legacy-peer-deps
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Expose the development server port
|
|
EXPOSE 3005
|
|
|
|
# Start development server
|
|
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "3005"] |