You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN apk add --update --no-cache --virtual builddeps curl unzip
15
-
RUN apk upgrade --update --no-cache
16
-
RUN apk add bash
17
-
RUN if [ ! -z "$VERSION" ] ; then rm -rf ./*.zip ; curl -L https://github.com/OpenIdentityPlatform/OpenICF/releases/download/$VERSION/openicf-$VERSION.zip --output openicf-$VERSION.zip ; fi
18
-
RUN unzip openicf-*.zip && rm -rf *.zip
19
-
RUN apk del unzip
20
-
RUN addgroup -S $USER
21
-
RUN adduser -S -u 1001 -G $USER $USER
22
-
RUN install -d -o $USER /opt/openicf
23
-
RUN chown -R $USER:$USER /opt/openicf
24
-
RUN chmod -R g=u /opt/openicf
25
-
RUN chmod +x /opt/openicf/bin/*.sh
14
+
RUN apk add --update --no-cache --virtual builddeps curl unzip \
0 commit comments