-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
27 lines (20 loc) · 968 Bytes
/
Dockerfile
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
# run as:
# docker build -t hcsi_marginaltheshold .
# base everything on a recent Ubuntu
FROM debian:latest
# get system packages up to date then install a basic scientific python
RUN apt-get update && apt-get -y upgrade && \
apt-get -y install python3 \
python3-numpy python3-pandas \
ttf-bitstream-vera
# add and configure our code
# take wigwams.py and wigwams_wrapper.py, which we need
# and put it all into /wigwams inside the docker container
RUN mkdir /scripts
COPY hcsi_MarginalThreshold.py hcsi_marginalthreshold_tarwrapper.sh /scripts/
MAINTAINER Krzysztof Polanski <[email protected]>
# so this is what is going to run by default when you trigger this, in the virtual machine
# call the wigwams wrapper from the other directory while staying in /agave with the files
ENTRYPOINT ["bash", "/scripts/hcsi_marginalthreshold_tarwrapper.sh"]
# if nothing else is specified in the docker call, just run --help
CMD ["--help"]