Skip to content

Commit

Permalink
chore: install curl before using it
Browse files Browse the repository at this point in the history
prep for #9
  • Loading branch information
hairmare authored Feb 24, 2023
1 parent 5e6e10f commit 6953418
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ ENV KC_DB=postgres

WORKDIR /opt/keycloak

RUN curl -L -o providers/keycloak-theme-rabe-$THEME_VERSION.jar \
RUN microdnf install -y \
curl \
&& microdnf clean all \
&& curl -L -o providers/keycloak-theme-rabe-$THEME_VERSION.jar \
https://github.com/radiorabe/keycloak-theme-rabe/releases/download/v$THEME_VERSION/keycloak-theme-rabe.jar \
&& /opt/keycloak/bin/kc.sh build

Expand Down

0 comments on commit 6953418

Please sign in to comment.