79188894

Date: 2024-11-14 13:16:51
Score: 0.5
Natty:
Report link

For installing java 8 in any alpine image you need to replace https by http in file /etc/apk/repositories

FROM anyImage:alpine
RUN apk update && \
    sed -i 's/https/http/' /etc/apk/repositories && \
    apk update && \
    apk add openjdk8-jre
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Frank Escobar