Including vmpooler-provider-gce in the Gemfile

Also assing a required ENV var and the location of the keyfile

create helm tarball version 1.8.0 and index file
This commit is contained in:
Samuel Beaulieu 2021-12-22 20:07:49 -06:00
parent 4d15af416a
commit 46935a716a
No known key found for this signature in database
GPG key ID: 12030F74136D0F34
10 changed files with 144 additions and 51 deletions

View file

@ -23,14 +23,16 @@ RUN apt-get update -qq && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
RUN gem install bundler && \
gem update --system 3.2.3
COPY ./docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
COPY ./Gemfile* ./
RUN gem install bundler && \
bundle config set --local jobs 3 && \
RUN bundle config set --local jobs 3 && \
bundle install
ENTRYPOINT ["docker-entrypoint.sh"]