face_dataction: run docker build via bazel sh_binary
diff --git a/apps/face_detection/chart/templates/pcloud/Actions.yaml b/apps/face_detection/chart/templates/pcloud/Actions.yaml
index 32b2a99..0b00bb1 100644
--- a/apps/face_detection/chart/templates/pcloud/Actions.yaml
+++ b/apps/face_detection/chart/templates/pcloud/Actions.yaml
@@ -8,8 +8,8 @@
     spec:
       containers:
       - name: detect-faces
-        image: giolekva/face-detector:latest
+        image: {{ .Values.image.name }}:{{ .Values.image.tag }}
         imagePullPolicy: Always
-        command: ["python3", "main.py"]
+        command: ["/face_detector"]
         args: [{-{ .PCloudApiAddr }-}, {-{ .ObjectStoreAddr }-}, {-{ .Id }-}]
       restartPolicy: Never
diff --git a/apps/face_detection/chart/values.yaml b/apps/face_detection/chart/values.yaml
index 987d303..d722483 100644
--- a/apps/face_detection/chart/values.yaml
+++ b/apps/face_detection/chart/values.yaml
@@ -1,8 +1,4 @@
-replicas: 1
 image:
-  name: giolekva/minio-importer
+  name: localhost:30500/giolekva/face-detector
   tag: latest
   pullPolicy: Always
-servicePort: 80
-containerPort: 1234
-pcloudApiAddress: http://api.pcloud.svc:1111/graphql
\ No newline at end of file