-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (28 loc) · 1011 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
28
29
30
31
32
33
34
35
36
37
FROM artemklevtsov/r-alpine:3.3.1
MAINTAINER PhenoMeNal-H2020 Project ( phenomenal-h2020-users@googlegroups.com )
LABEL Description="R-based script to compute NMR spectrum deviation for sample QC"
LABEL software.version="0.1.1"
LABEL version="0.1"
LABEL software="nmr-integrals"
LABEL base.image="artemklevtsov/r-alpine:3.3.1"
LABEL website="https://github.com/phnmnl/container-nmr-integrals"
LABEL documentation="https://github.com/phnmnl/container-nmr-integrals"
LABEL license="https://github.com/phnmnl/container-nmr-integrals"
LABEL tags="Metabolomics"
RUN \
apk update \
&& apk add ca-certificates unzip wget \
&& rm -rf /var/cache/apk/*
RUN Rscript -e 'install.packages(c("caTools", "optparse"))'
WORKDIR /nmr-integrals
COPY \
integrals.R \
integrals_galaxy_wrapper.sh \
runTest1.sh \
/usr/local/bin/
RUN \
chmod a+rx \
/usr/local/bin/integrals.R \
/usr/local/bin/integrals_galaxy_wrapper.sh \
/usr/local/bin/runTest1.sh
ENTRYPOINT ["integrals_galaxy_wrapper.sh"]