forked from NarendraPAutomationEngineer/StackStormTutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
37 lines (31 loc) · 743 Bytes
/
Dockerfile
File metadata and controls
37 lines (31 loc) · 743 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
32
33
34
35
36
37
FROM ubuntu:xenial
RUN DEBIAN_FRONTEND=noninteractive \
apt-get update \
&& apt-get install -y \
python-pip \
python-dev \
build-essential \
libffi6 \
libffi-dev \
libssl-dev \
curl \
bash-completion \
vim \
git \
graphviz \
libgraphviz-dev \
pkg-config
RUN pip install --upgrade pip
COPY requirements.txt /requirements.txt
RUN pip install -r requirements.txt
RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN apt-get install -y nodejs
COPY web /web
WORKDIR /web
RUN npm install
COPY orquesta /orquesta
WORKDIR /orquesta
RUN pip install -e .
WORKDIR /web
COPY bin/docker-entrypoint.sh /usr/local/bin/
ENTRYPOINT ["docker-entrypoint.sh"]