FROM node:24-alpine ARG DATABASE_URL ENV DATABASE_URL=${DATABASE_URL} WORKDIR /app COPY . . RUN npm install --force CMD ["npm", "run", "start"]