FROM node:18-alpine AS build WORKDIR /app # Frontend doesn't need a build step for this simple setup COPY . . # Serve with a simple HTTP server RUN npm install -g http-server EXPOSE 3000 CMD ["http-server", ".", "-p", "3000", "-c-1"]