Skip to content

Commit

Permalink
bruuu /deploy-app
Browse files Browse the repository at this point in the history
  • Loading branch information
yeabmoh committed Dec 11, 2024
1 parent 74a2878 commit 17eac51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/deployment/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,12 @@ RUN curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.28/deb/Release.key | gpg --d
curl https://baltocdn.com/helm/signing.asc | apt-key add -&& \
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list && \
apt-get update && \
apt-get install -y --no-install-recommends kubectl helm python3 python3-pip && \
pip install openshift ansible docker apache-libcloud
apt-get install -y --no-install-recommends kubectl helm python3.9 python3-pip && \
pip install openshift ansible docker apache-libcloud pipenv

RUN apt-get update && \
apt-get install -y google-cloud-sdk google-cloud-sdk-gke-gcloud-auth-plugin jq docker-ce

RUN useradd -ms /bin/bash app -d /home/app -u 1000 -p "$(openssl passwd -1 passw0rd)" && \
usermod -aG docker app && \
mkdir -p /app && \
Expand Down

0 comments on commit 17eac51

Please sign in to comment.