Antoine Taillefer
Antoine Taillefer
Hi @ibayue, this sounds very much like https://github.com/GoogleContainerTools/kaniko/issues/9.
Don't know, can you please provide the new Dockerfile?
Just a quick check, does it behave the same without the final slash in the target directory? ``` COPY --chown=forgerock:root . /opt/opendj ``` instead of ``` COPY --chown=forgerock:root . /opt/opendj/...
OK @maxres-fr good to know, we'll try to test soon the supposedly fixed `COPY --chown`.
@florent33700 , do you have any news about the latest point? > a feature request is already opened for that. We'll keep you updated with it.
@florent33700 Concerning: > Another problem: when the user refuses to log in and so the login status is 'CANCELLED' and then he tries to log in again, Google does not...
Indeed for privacy reasons, for the Chrome Custom Tabs for instance the only navigation callback you can get are defined here: https://developer.chrome.com/multidevice/android/customtabs in the **Custom Tabs Connection Callback** section.
Have you followed all the installation steps? Might be the way you're importing the `CustomTabs` component. Have you tried the following? ``` import { CustomTabs } from 'react-native-custom-tabs'; ```
Nope, just navigate to another screen of your app once you've been redirected by the OAuth flow. Something like: ``` componentDidMount() { Linking.addEventListener('url', this._authorize); } async _authorize(options) { // handle...
Well no, if you navigate to another screen of your app then you are no more on the Chrome Custom Tab.