def docker_tags()

in aws/hhvm1/lambdas/activities.py [0:0]


  def docker_tags(self, repo):
    return {
      tag['name'] for tag in json.loads(
        request
          .urlopen(f'https://index.docker.io/v1/repositories/hhvm/{repo}/tags')
          .read()
          .decode('ascii')
      )
    }