create-workspace: docker: use absolute path to Dockerfile

This commit is contained in:
Oleksii Shevchuk 2020-03-29 19:08:23 +03:00
parent 14f8238981
commit c19c58e679
1 changed files with 1 additions and 1 deletions

View File

@ -443,7 +443,7 @@ def create_container_env(
build_command.extend([
'-t', ENV_IMAGE,
'-f', 'conf/Dockerfile.env',
'-f', os.path.join(git_path, 'pupy', 'conf', 'Dockerfile.env'),
os.path.join(git_path, 'pupy')
])