Skip to content
Snippets Groups Projects
Select Git revision
  • f0e877d1ccfce249da2f25082ebb9ba23213e46a
  • main default protected
  • renovate/ruby
  • renovate/selenium-webdriver-4.x-lockfile
  • renovate/importmap-rails-2.x-lockfile
  • renovate/puma-6.x-lockfile
  • renovate/solid_queue-1.x-lockfile
  • renovate/redis-5.x-lockfile
  • renovate/icalendar-2.x-lockfile
  • renovate/debug-1.x-lockfile
  • renovate/turbo-rails-2.x-lockfile
  • renovate/gcr.io-kaniko-project-executor-1.x
  • eh22 protected
  • update-rubocop
14 results

.ruby-version

Blame
  • Dockerfile.meteor 985 B
    FROM debian:bullseye
    
    ENV NODEJS_VERSION=14.19.3
    ENV METEOR_VERSION=2.5.6
    ENV METEOR_ALLOW_SUPERUSER=true
    ENV PATH=$PATH:/root/.meteor
    
    RUN apt-get -qq update && \
        apt-get -qq dist-upgrade && \
        apt-get -qq install lsb-release curl wget ca-certificates debhelper apt-utils libarchive-tools gnupg bzip2 g++ build-essential git python3 && \
        lsb_release -a && uname -a
    
    RUN cd && \
        wget -q "https://deb.nodesource.com/node_14.x/pool/main/n/nodejs/nodejs_${NODEJS_VERSION}-deb-1nodesource1_amd64.deb" -O nodejs.deb && \
        apt-get -qq install ./nodejs.deb && \
        npm install -g corepack && \
        corepack enable
    
    RUN cd && \
        wget -q "https://static-meteor.netdna-ssl.com/packages-bootstrap/${METEOR_VERSION}/meteor-bootstrap-os.linux.x86_64.tar.gz" -O meteor-bootstrap.tar.gz && \
        # The package only contains an ".meteor" directory that ends up in "/root/.meteor"
        tar -xzf meteor-bootstrap.tar.gz && \
        rm meteor-bootstrap.tar.gz && \
        meteor --version