diff --git a/deploy.core.inc b/deploy.core.inc
index 9669ec0..f881f8a 100644
--- a/deploy.core.inc
+++ b/deploy.core.inc
@@ -257,3 +257,24 @@ function file_deploy_field_alter($entity_type, &$entity, $field, $instance, $lan
     }
   }
 }
+
+/**
+ * Implements hook_deploy_field_dependency().
+ */
+function image_deploy_field_dependencies($entity_type, $entity, $field, $instance, $langcode, $items) {
+  return file_deploy_field_dependencies($entity_type, $entity, $field, $instance, $langcode, $items);
+}
+
+/**
+ * Implements hook_deploy_entity_alter().
+ */
+function image_deploy_entity_alter(&$entity, $entity_type) {
+  file_deploy_entity_alter($entity, $entity_type);
+}
+
+/**
+ * Implements hook_deploy_field_alter().
+ */
+function image_deploy_field_alter($entity_type, &$entity, $field, $instance, $langcode, &$items) {
+  file_deploy_field_alter($entity_type, $entity, $field, $instance, $langcode, $items);
+}
