mirror of
https://github.com/puppetlabs/vmpooler-deployment.git
synced 2026-01-26 03:28:41 -05:00
Also assing a required ENV var and the location of the keyfile create helm tarball version 1.8.0 and index file
6 lines
341 B
Bash
Executable file
6 lines
341 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
docker run -it --rm \
|
|
-v $(pwd):/app \
|
|
$(grep ^FROM ./Dockerfile |cut -d ' ' -f2) \
|
|
/bin/bash -c 'apt-get update -qq && apt-get install -y --no-install-recommends make && cd /app && gem install bundler && gem update --system 3.2.3 && bundle install --jobs 3 && bundle update; echo "LOCK_FILE_UPDATE_EXIT_CODE=$?"'
|