Skip to content

Latest commit

 

History

History
17 lines (9 loc) · 447 Bytes

File metadata and controls

17 lines (9 loc) · 447 Bytes

GitHub Actions Docker Build And Push

Basic Demo CI/CD Pipeline with Docker using Github Actions

Untitled Diagram

build the Java project

./gradlew build

build Docker image called java-app, execute from root

docker build -t java-app .

push image to repo

docker tag java-app demo-java-app:java-1.0