-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Which release, branch or hash of Docker SDK are you using?
1.30.0
Which operating system (platform/version/architecture) are you using?
Debian 10
What is the issue that you're experiencing?
Owner of files inside containers is not correctly set
What are the steps to reproduce the issue?
Build generator image (docker/sdk boot)
Check ownership of index.php
What is the expected result of these steps in the absence of the issue?
File ownership is adjusted to UID of current user
What is the actual result?
File ownership is set to UID=1000
What possible solutions and/or workarounds for the issue do you see?
--
Is there any other information that might be helpful?
https://github.com/spryker/docker-sdk/blame/master/generator/Dockerfile#L24
The line mentioned above gives an error - it’s ignored and doesn’t break docker build:
$ find / -user 1000 -exec chown -h spryker {} \ || true;
find: -exec requires an argument
Correct command is missing semicolon:
find / -user 1000 -exec chown -h spryker {} \; || true;
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working