Skip to content
Snippets Groups Projects
Commit af21c018 authored by lcappelli's avatar lcappelli
Browse files

Copy the library-script in /tmp/library-script

parent d6149142
No related branches found
No related tags found
No related merge requests found
......@@ -12,15 +12,15 @@ ENV USERNAME $USERNAME
ENV USER_UID $USER_UID
ENV USER_GID ${USER_UID}
COPY library-script/* /docker/
COPY library-script/*.sh /tmp/library-script
RUN yum update -y && \
sh /docker/setup.sh && \
sh /docker/provide-user.sh ${USERNAME} ${USER_UID} ${USER_GID} && \
sh /tmp/library-script/setup.sh && \
sh /tmp/library-script/provide-user.sh ${USERNAME} ${USER_UID} ${USER_GID} && \
yum clean all && rm -rf /var/cache/yum
COPY --chown=$USERNAME:$USERNAME assets/build-install-openresty-voms.sh /home/$USERNAME/bin/
USER $USERNAME
RUN sh /docker/build-install-openresty.sh
\ No newline at end of file
RUN sh /tmp/library-script/build-install-openresty.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment