I want to deploy a Docker container in a Azure Service Fabric. For this I implemented a Node.js service and wrote my dockerfile. I tested the service on my local machine with Docker and it worked. My next step was to build the Docker image on TeamCity. I use a Docker runner for it and it worked too. Now I want to deploy this image to an Azure Service Fabric cluster. But I did not find any documentation.
My idea is to use the artifact (docker image) from my build step, and deploy it directly to a Service Fabric cluster. Is this possible? If not, how can I deploy my image there?
Thanks for the help!