FROM node:20-alpine RUN npm install -g serve COPY docs /app WORKDIR /app CMD ["sh", "-c", "serve -s . -l ${PORT:-3000}"]