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
Hello there)
My local dev environment is:
I am build Redis 8.0m01 docker image as usual: docker build -f Dockerfile -t redis:8.0m01-alpine .
docker build -f Dockerfile -t redis:8.0m01-alpine .
Got error:
25.94 + rm -f /tmp/tmp.iePIcl /usr/local/bin/gosu.asc 25.94 rm: '/tmp/tmp.iePIcl' is a directory
redis80_build.log
So the problem string number 20 in Dockerfile: rm -f "$GNUPGHOME" /usr/local/bin/gosu.asc; \
rm -f "$GNUPGHOME" /usr/local/bin/gosu.asc; \
Dockerfile for Debian did not have this problen, only Alpine image. Commit with this error 8f1a23f
To fix this error: rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; \
rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; \
Can you fix it? Thank you in advance)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello there)
My local dev environment is:
I am build Redis 8.0m01 docker image as usual:
docker build -f Dockerfile -t redis:8.0m01-alpine .
Got error:
redis80_build.log
So the problem string number 20 in Dockerfile:
rm -f "$GNUPGHOME" /usr/local/bin/gosu.asc; \
Dockerfile for Debian did not have this problen, only Alpine image.
Commit with this error 8f1a23f
To fix this error:
rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; \
Can you fix it? Thank you in advance)
The text was updated successfully, but these errors were encountered: