FROM node:20-alpine WORKDIR /app COPY index.js . RUN apk add --no-cache git EXPOSE 3000 CMD ["node", "index.js"]