Skip to content

Commit

Permalink
Don't verify during download via curl
Browse files Browse the repository at this point in the history
Motivation:

Our curl version is too old, just don't verify while download sdkman

Modifications:

Download via -k

Result:

Build docker image again
  • Loading branch information
normanmaurer committed Mar 18, 2024
1 parent 0cb6518 commit c94e739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ RUN wget -q --no-check-certificate https://github.com/netty/netty-tcnative/relea
RUN rm -rf $SOURCE_DIR

# Downloading and installing SDKMAN!
RUN curl -s "https://get.sdkman.io" | bash
RUN curl -s -k "https://get.sdkman.io" | bash

ARG java_version="8.0.302-zulu"
ENV JAVA_VERSION $java_version
Expand Down

0 comments on commit c94e739

Please sign in to comment.