Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Marco Di Francesco
IDA LSTM
Commits
72b7e11a
Commit
72b7e11a
authored
Sep 07, 2021
by
Gabriele Franch
Browse files
added build scripts
parent
64582fb9
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
72b7e11a
...
...
@@ -12,4 +12,6 @@ __pycache__/
.ipynb_checkpoints
# Singularity file
ida-lstm
\ No newline at end of file
ida-lstm
.idea/
\ No newline at end of file
build_docker.sh
0 → 100644
View file @
72b7e11a
#!/usr/bin/env bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
>
/dev/null 2>&1
&&
pwd
)
"
cd
$DIR
APP_NAME
=
${
PWD
##*/
}
echo
"Building
${
APP_NAME
}
..."
docker build
-t
ida-lstm .
\ No newline at end of file
build_singularity.sh
0 → 100644
View file @
72b7e11a
#!/usr/bin/env bash
DIR
=
"
$(
cd
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
>
/dev/null 2>&1
&&
pwd
)
"
cd
$DIR
APP_NAME
=
${
PWD
##*/
}
echo
"Building
${
APP_NAME
}
..."
./build_docker.sh
singularity build ida-lstm docker-daemon://ida-lstm:latest
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment