We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using version 0.8.2 and the plugin works correctly in a venv. In a docker, however, it only clones the repo root and no subfolders. Why is that?
0.8.2
venv
Dockerfile:
COPY requirements.txt . RUN addgroup -S user && adduser -S user -G user RUN apk update &&\ apk add --update --no-cache --allow-untrusted \ bash \ git \ gcc \ gzip \ musl-dev \ nodejs npm \ python3-dev \ py3-pip \ tar \ xz &&\ rm -rf /var/cache/apk/* RUN pip3 install --break-system-packages -r requirements.txt USER user RUN mkdir /home/user/data RUN git config --global --add safe.directory /home/user/data WORKDIR /home/user/data
started with:
docker run --rm -it \ --volume "$(pwd):/home/user/data" \ -v "$(realpath ~/.netrc):/home/user/.netrc" \ mycontainer
The text was updated successfully, but these errors were encountered:
This could be related to #133
Sorry, something went wrong.
No branches or pull requests
I'm using version
0.8.2
and the plugin works correctly in avenv
. In a docker, however, it only clones the repo root and no subfolders. Why is that?Dockerfile:
started with:
The text was updated successfully, but these errors were encountered: