-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathSingularity.tensorflow
31 lines (24 loc) · 1.11 KB
/
Singularity.tensorflow
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
BootStrap: docker
From: tensorflow/tensorflow:1.3.0
################################################################################
%labels
################################################################################
TENSORFLOW_VERSION 1.3.0
MAINTAINER Wolfgang Resch
################################################################################
%setup
################################################################################
################################################################################
%post
################################################################################
# create bind points for NIH HPC environment
mkdir /gpfs /spin1 /gs2 /gs3 /gs4 /gs5 /gs6
mkdir /gs7 /gs8 /data /scratch /fdb /lscratch
################################################################################
%environment
################################################################################
export LC_ALL=C
################################################################################
%runscript
################################################################################
exec ipython "$@"