omit appendix on custom Dockerfiles

using a custom Dockerfile means opting out of *all* repo2docker logic
pull/250/head
Min RK 2018-03-07 11:27:54 +01:00
rodzic 8d39900375
commit b98be640a2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -15,7 +15,7 @@ class DockerBuildPack(BuildPack):
def render(self):
Dockerfile = self.binder_path('Dockerfile')
with open(Dockerfile) as f:
return '\n'.join([f.read(), self.appendix, ''])
return f.read()
def build(self, image_spec, memory_limit, build_args):
limits = {