added git and docker to drone Deploy docker images pipeline
continuous-integration/drone/push Build was killed Details

drone-setup
Override-6 2 years ago
parent fb83280c79
commit 2c5b54d5ff

@ -37,7 +37,7 @@ name: "Deploy docker images"
steps: steps:
- name: Build and push - name: Build and push
image: docker:latest image: override6/docker-git
commands: commands:
- chmod +x drone/image-deploy.sh - chmod +x drone/image-deploy.sh
- drone/image-deploy.sh - drone/image-deploy.sh

@ -2,10 +2,6 @@
FROM ubuntu:latest FROM ubuntu:latest
RUN apt update &&\ RUN apt update &&\
apt install openjdk-11-jdk openssh-client wget unzip curl -y &&\ apt install git docker -y
wget https://services.gradle.org/distributions/gradle-7.5.1-bin.zip &&\
mkdir /opt/gradle &&\
unzip -d /opt/gradle gradle-7.5.1-bin.zip &&\
export GRADLE_HOME=/opt/gradle/gradle-7.5.1 && \