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

This reverts commit a052c71aec.
This commit is contained in:
Joe Rickerby
2020-06-25 10:39:26 +01:00
parent 850d109582
commit dd4fc69e7c
2 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -110,7 +110,7 @@ def build(options: BuildOptions) -> None:
continue
try:
with DockerContainer(docker_image) as docker:
with DockerContainer(docker_image, simulate_32_bit=platform_tag.endswith('i686')) as docker:
docker.copy_into(Path.cwd(), Path('/project'))
if options.before_all: