# Node.js testing environment for CI/CD ARG CI_HOST=localhost ARG APP_NAME=sharenet FROM ${CI_HOST}:443/${APP_NAME}/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"]