forked from InsightDataScience/pegasus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
32 lines (22 loc) · 723 Bytes
/
Dockerfile
File metadata and controls
32 lines (22 loc) · 723 Bytes
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
##########################################
# Dockerfile to run Pegasus
# Based on Debian
###########################################
FROM debian:jessie
MAINTAINER Austin Ouyang
RUN apt-get update \
&& apt-get install -y vim \
&& apt-get install -y openssh-client \
&& apt-get install -y python \
&& apt-get install -y python-dev \
&& apt-get install -y python-pip \
&& apt-get install -y git
RUN pip install awscli
RUN git clone https://github.com/sstephenson/bats.git /root/bats
RUN /root/bats/install.sh /usr/local
ENV PEGASUS_HOME /root/pegasus
ENV PATH $PEGASUS_HOME:$PATH
ENV REM_USER ubuntu
COPY . /root/pegasus
RUN echo "source pegasus-completion.sh" >> /root/.bashrc
WORKDIR /root