Skip to content

Bump bunit from 1.12.6 to 1.23.9 in /generators/server/templates/dotnetcore/src #1548

Bump bunit from 1.12.6 to 1.23.9 in /generators/server/templates/dotnetcore/src

Bump bunit from 1.12.6 to 1.23.9 in /generators/server/templates/dotnetcore/src #1548

name: build docker image
on:
push:
branches:
- main
pull_request:
jobs:
build_docker_image:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
-
name: Build docker image
run: docker build -t jhipster/jhipster-dotnetcore:test-build ./docker/
-
name: Check if docker image exists and remove it
run: |
imageId=$(docker images -q jhipster/jhipster-dotnetcore:test-build)
if [[ -z "${imageId}" ]]; then
echo "Docker image is not getting built or is broken"
exit 1
fi
docker rmi $imageId