Files
sasa-membership/frontend/Dockerfile
James Pattinson 93aeda8e83 Basic frontend
2025-11-10 14:51:15 +00:00

19 lines
233 B
Docker

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