Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOSIP-32064 #120

Merged
merged 3 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion biosdk-services/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ARG container_user_gid=1001

# install packages and create user
RUN apk -q update \
&& apk add -q unzip sudo\
&& apk add -q unzip curl sudo\
&& addgroup -g ${container_user_gid} ${container_user_group} \
&& adduser -s /bin/sh -u ${container_user_uid} -G ${container_user_group} -h /home/${container_user} --disabled-password ${container_user}

Expand Down
4 changes: 3 additions & 1 deletion biosdk-services/configure_biosdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ set -e

echo "starting downloading zip file $biosdk_zip_file_path"

wget -q --show-progress "$biosdk_zip_file_path"
# wget -q --show-progress "$biosdk_zip_file_path"
curl -# -o "$biosdk_zip_file_path"

echo "Downloaded $biosdk_zip_file_path"

FILE_NAME=${biosdk_zip_file_path##*/}
Expand Down
Loading