qbicsoftware / spark-service

MIT License
0 stars 1 forks source link

Alpine Linux 3.9 broke SBT #4

Open Zethson opened 5 years ago

Zethson commented 5 years ago

The updated 3.9 Alpine Image broke SBT.

We should either move to Ubuntu anyways or test over the weeks whether they fixed it or not.

Zethson commented 5 years ago

https://github.com/gliderlabs/docker-alpine/issues/504

Zethson commented 5 years ago

https://github.com/docker-library/openjdk/issues/289

felipecaon commented 5 years ago

Unfortunately I don't have powers to open pull requests, but fix can be performed under docker/base/Dockerfile just by adding nss to line 13.

RUN apk update && \ apk upgrade && \ apk add --no-cache \ bash \ ca-certificates \ curl \ wget \ tar \ jq \ unzip \ vim \ nss

Zethson commented 5 years ago

Thank you! I already figured this out as well and already applied it. It's working.

I'm leaving this issue open as a reminder for myself to remove nss again if it gets added as openjdk8 dependency again.