livrare lot 2
This commit is contained in:
commit
8ecc78e729
763 changed files with 164593 additions and 0 deletions
24
backend/admin-dashboard/Dockerfile.dev
Normal file
24
backend/admin-dashboard/Dockerfile.dev
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Development Dockerfile for Admin Dashboard
|
||||
# Uses Node.js directly for hot reload support
|
||||
|
||||
FROM node:20-alpine
|
||||
|
||||
# Install curl for health checks
|
||||
RUN apk add --no-cache curl
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy package files
|
||||
COPY package*.json ./
|
||||
|
||||
# Install dependencies
|
||||
RUN npm install --legacy-peer-deps
|
||||
|
||||
# Copy application code
|
||||
COPY . .
|
||||
|
||||
# Expose port
|
||||
EXPOSE 3000
|
||||
|
||||
# Start development server
|
||||
CMD ["npm", "start"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue