add working dir to docker image [DB-151] #19
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Currently, a run without options fails with permission errors, as the default working dir is
![image](https://private-user-images.githubusercontent.com/11350169/240762906-8eccd7cb-ebfd-4011-b315-770ff733a306.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NDUwODYsIm5iZiI6MTczOTY0NDc4NiwicGF0aCI6Ii8xMTM1MDE2OS8yNDA3NjI5MDYtOGVjY2Q3Y2ItZWJmZC00MDExLWIzMTUtNzcwZmY3MzNhMzA2LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDE4Mzk0NlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWE5MGMwOGU2ZTU3MjhiNjBlNjc4YTIyMjIxZjlmOWMyMTAzZjlmYmYyMTA0OWRiYzFlM2I2ODRmNTBhMTEzZWQmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.gZ5Mju_zHNk12FDfbjkt-oFRD7LNp-J0SeKCKakxI2o)
/
:Setting the working dir to
![image](https://private-user-images.githubusercontent.com/11350169/240763388-f1a7c0b8-9a90-4d02-93f7-451cc8467d5c.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk2NDUwODYsIm5iZiI6MTczOTY0NDc4NiwicGF0aCI6Ii8xMTM1MDE2OS8yNDA3NjMzODgtZjFhN2MwYjgtOWE5MC00ZDAyLTkzZjctNDUxY2M4NDY3ZDVjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTUlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE1VDE4Mzk0NlomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWRkYmZkMWE2NGU5MTY0MTAxNjlkZTFjNmM4NzRlYTcwZTJmNTQ5NDc1YTJiYzFhNTFkNzc1NzhkNTdkMjcxNzUmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.GpeVv-Ean4xQJd00CplXGYgYEm2QvbYq5RY6hAVy5vs)
/tmp
allows it to function without permission errors:This is useful for simplifying bootstrapping configs, e.g. if an external config is mounting a volume into
/tmp
.