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

Rename library-script folder in library-scripts

parent 8d4438da
No related branches found
No related tags found
No related merge requests found
......@@ -8,15 +8,15 @@ ARG USERNAME=vscode
ARG USER_UID=1000
ARG USER_GID=${USER_UID}
COPY library-script/*.sh /tmp/library-script/
COPY library-scripts/*.sh /tmp/library-scripts/
RUN yum update -y && \
sh /tmp/library-script/provide-deps.sh && \
sh /tmp/library-script/provide-user.sh ${USERNAME} ${USER_UID} ${USER_GID} && \
sh /tmp/library-scripts/provide-deps.sh && \
sh /tmp/library-scripts/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 /usr/local/bin/
USER $USERNAME
RUN sh /tmp/library-script/build-install-openresty.sh
\ No newline at end of file
RUN sh /tmp/library-scripts/build-install-openresty.sh
\ No newline at end of file
This folder contains the environment definition as a Docker image for the development of openresty-voms. It can be used as Dev Container in Visual Studio Code.
The *library-script* folder contains all the scripts needed for the build of the Dockerfile and for the definition of the environment:
The *library-scripts* folder contains all the scripts needed for the build of the Dockerfile and for the definition of the environment:
* *setup.sh* installs the packages for the development
* *provide-user.sh* creates the DEV user and set its environment
* *build-install-openresty.sh* configures, builds and installs openresty as a check to see if everything is ok
......
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