# Node.js testing environment for CI/CD ARG REGISTRY_HOST=localhost ARG OWNER_REPO=owner/repo FROM ${REGISTRY_HOST}/${OWNER_REPO}/node:20-slim # Install additional tools needed for testing RUN apt-get update && apt-get install -y \ curl \ && rm -rf /var/lib/apt/lists/* # Set working directory WORKDIR /workspace/frontend # Keep container running for testing CMD ["sleep", "infinity"]