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 have a docker file that works for year now. It did not have any issues, but today when I tried to build it, I've got following error:
dependency 'sodium' is not available for package 'plumber'
This was the command I've tried to execute:
RUN R -e "install.packages(c('plumber'), repos='https://cloud.r-project.org')"
Base image is ubuntu:19.10
Another error I found - "dependency 'sodium' is not available for package 'plumber'"
The text was updated successfully, but these errors were encountered:
Plumber now requires a package that requires libsodium to be installed on your system.
plumber/DESCRIPTION
Line 30 in c051c6b
In your docker file, put that before plumber installation.
RUN apt install libsodium-dev
Sorry, something went wrong.
Thank you!
README.md: Typos and instructions to install Plumber
e88b420
Typos in text and code. Instructions to install Plumber. Sources used to fix the plumber/libsodium error: rstudio/plumber#671 https://stackoverflow.com/a/61455761/9071968
No branches or pull requests
I have a docker file that works for year now. It did not have any issues, but today when I tried to build it, I've got following error:
dependency 'sodium' is not available for package 'plumber'
This was the command I've tried to execute:
RUN R -e "install.packages(c('plumber'), repos='https://cloud.r-project.org')"
Base image is ubuntu:19.10
Another error I found - "dependency 'sodium' is not available for package 'plumber'"
The text was updated successfully, but these errors were encountered: