From b2340701e9d9af31f9e23541be3d0ce93ed01cee Mon Sep 17 00:00:00 2001 From: David Bilik Date: Sat, 31 Aug 2024 17:36:45 +0200 Subject: [PATCH] Add source to profile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 061bc41..73c996e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL tag="ackee-gitlab" \ SHELL ["/bin/bash", "-c"] RUN apt-get update && apt-get install -y \ - curl \ + curl \ git \ libgl1-mesa-glx \ unzip \ @@ -132,7 +132,7 @@ RUN curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.d 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 + && echo "source helper_functions.sh" >> /etc/profile \ + && echo "source android_ci_functions.sh" >> /etc/profile VOLUME /root/.gradle