You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 755B

123456789101112131415161718192021
  1. #------------------------------------------------------------------------------
  2. # Installs NodeJS, which is needed for running the Linux ITs.
  3. #
  4. # Build from the basedir:
  5. # docker build -f it/docker/Dockerfile-qa -t sonar-scanner-cli-qa it/docker
  6. #
  7. # Verify the content of the image by running a shell session in it:
  8. # docker run -it sonar-scanner-cli-qa bash
  9. #
  10. # CirrusCI builds the image when needed. No need to manually upload it to
  11. # Google Cloud Container Registry. See section "gke_container" of .cirrus.yml
  12. #------------------------------------------------------------------------------
  13. FROM gcr.io/ci-cd-215716/base:latest
  14. USER root
  15. RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
  16. RUN apt-get install -y nodejs
  17. USER sonarsource