diff --git a/endpoints/api.py b/endpoints/api.py index d4811d761..a1a769744 100644 --- a/endpoints/api.py +++ b/endpoints/api.py @@ -902,6 +902,7 @@ def image_view(image): 'id': image.docker_image_id, 'created': image.created, 'comment': image.comment, + 'command': json.loads(image.command) if image.command else None, 'ancestors': image.ancestors, 'dbid': image.id, 'size': image.image_size,