-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
34 lines (29 loc) · 977 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
FROM debian:stable
LABEL maintainer "Emilio Palumbo <[email protected]>" \
version "1.1" \
description "IPSA-nf"
# install needed tools
RUN apt-get update --fix-missing -qq && apt-get install -y -q \
curl \
wget \
gawk \
build-essential \
zlib1g-dev \
libncurses5-dev \
libncursesw5-dev \
&& apt-get clean \
&& apt-get purge \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# install maptools
RUN curl -fsSL https://github.com/pervouchine/maptools/archive/v3.2.tar.gz | tar xz && \
mkdir -p maptools-3.2/bin && \
make -C maptools-3.2 all
# install sjcount
RUN curl -fsSL https://github.com/pervouchine/sjcount/archive/v3.1.tar.gz | tar xz && \
make -C sjcount-3.1 all
ENV PATH $PATH:/maptools-3.2/bin:/sjcount-3.1:/sjcount-3.1/samtools-0.1.18
#attempt to enter in a command
CMD ["echo","command added and ran"]
#test making and adding a directory
RUN mkdir myprojects
CMD ["echo","directory made"]