Remove hard-coded shell info to use the docker ENTRYPOINT instead

This lets us use the 'linux32 bash' that's specified by the i686 docker
images, without specifying it explicitly.
This commit is contained in:
Joe Rickerby
2020-06-24 16:50:08 +01:00
parent 31339ba30e
commit a052c71aec
2 changed files with 3 additions and 6 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ def build(options: BuildOptions) -> None:
continue
try:
with DockerContainer(docker_image, simulate_32_bit=platform_tag.endswith('i686')) as docker:
with DockerContainer(docker_image) as docker:
docker.copy_into(Path.cwd(), Path('/project'))
if options.before_all: