-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
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
gui container: invalid openssl option in NODE_OPTIONS #126
Comments
Hi @sebix , have you tried pulling the latest base image? This was added because newer versions of node had issues building the GUI without it! Try running this before building the container: docker pull node:lts-alpine or try updating also all base images with: docker-compose -f docker/docker-compose.yml build --pull see: #108 |
I forgot to add that I used branch main. If a specific version of the docker image is required, I suggest adding the required tag to the Dockerfile |
Well, I think we should always stay up to date, and fix these kinds of issues step by step. But yeah, it is a good suggestion to stabilize the version so that when somebody tries to build the containers with outdated images, it will automatically grab the new ones. |
I fully agree with you. If the docker image would provide lts-like tags / major version tags, so that security updates are automatically pulled, but no breaking updates, that'd be ideal. But for alpine these are dreams :D |
At building the gui container using branch main, I get the following error:
This is the affected code:
Taranis-NG/docker/Dockerfile.gui
Lines 15 to 16 in 9403d56
Removing the env lets the build succeed.
There wasn't a change in this Dockerfile since November, so maybe an updated package causes this now?
If you can reproduce the issue and think that removing
ENV NODE_OPTIONS=--openssl-legacy-provider
is the correct solution, I can create a PR fixing it.The text was updated successfully, but these errors were encountered: