Files
bakery-ia/frontend/Dockerfile.dev
Urtzi Alfaro 5bb3e93da4 first commit
2025-07-17 13:54:51 +02:00

18 lines
228 B
Docker

FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci
# Copy application files
COPY . .
# Expose port
EXPOSE 3000
# Start development server
CMD ["npm", "run", "dev"]