Docker image prevents VM deployment

111 Views Asked by At

I have interrupted a mvn gcloud:deploy command and I couldn't redeploy because this error message kept coming up. I had deleted all self generated buckets from GCS, but still no different outcome from this.

[INFO] If this is your first deployment, this may take a while.../
[INFO]                                                            
[INFO] If this is your first deployment, this may take a while...done.
[INFO] 

[INFO] ERROR: (gcloud.preview.app.deploy) There is a Dockerfile in the current directory, 
and the runtime field in /target/appengine-staging/app.yaml is currently set to
[runtime: java]. To use your Dockerfile to build a custom runtime, set the runtime field 
in /target/appengine-staging/app.yaml to [runtime: custom]. To continue using the [java]
runtime, please omit the Dockerfile from this directory. 

[ERROR] Error: gcloud app command with exit code : 1

Since I suspected this "lock" was on Google's source files for a builder instance it later deletes, I did what it was complaining about, changed my runtime from java to custom on the app.yaml file and it redeployed.

deployed versions and its runtimes

I can no longer deploy my VM with a Java runtime, I still get the same error message. How do I perform a clean build to get rid of this phantom docker image?

1

There are 1 best solutions below

1
ludo On BEST ANSWER

To clean the maven built target directory, you can do:

mvn clean gcloud:deploy