Skip to content

Commit

Permalink
Merge pull request #23 from AckeeDevOps/feature/helper-functions
Browse files Browse the repository at this point in the history
Add helper functions to an image
  • Loading branch information
davidbilik authored Aug 29, 2024
2 parents 2ade0b0 + cedb4ee commit d80a9f2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,11 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d
&& apt-get install -y git-lfs \
&& git lfs install

# add gitlab helper functions
ENV GITLAB_CI_UTILS_VERSION 2.7.0
RUN curl -o helper_functions.sh "https://raw.githubusercontent.com/AckeeDevOps/gitlab-ci-utils/$GITLAB_CI_UTILS_VERSION/scripts/helper_functions.sh" \
&& curl -o android_ci_functions.sh "https://raw.githubusercontent.com/AckeeCZ/android-gitlab-ci-scripts/v1.0.0/android_ci_functions.sh" \
&& echo "source helper_functions.sh" >> ~/.bashrc \
&& echo "source android_ci_functions.sh" >> ~/.bashrc

VOLUME /root/.gradle

0 comments on commit d80a9f2

Please sign in to comment.