-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathWebDockerfile
92 lines (82 loc) · 2.46 KB
/
WebDockerfile
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#### Conduit airflow server ####
# Mainly copied from Puckel_ : https://github.com/puckel/docker-airflow
FROM python:3.6-slim
# Never prompts the user for choices on installation/configuration of packages
ENV DEBIAN_FRONTEND noninteractive
ENV TERM linux
# Airflow
ARG AIRFLOW_VERSION=1.10.4
ARG AIRFLOW_HOME=/root
# Define en_US.
ENV LANGUAGE en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LC_ALL en_US.UTF-8
ENV LC_CTYPE en_US.UTF-8
ENV LC_MESSAGES en_US.UTF-8
ENV AIRFLOW_GPL_UNIDECODE True
RUN set -ex \
&& buildDeps=' \
python3-dev \
libkrb5-dev \
libsasl2-dev \
libssl-dev \
libffi-dev \
build-essential \
libblas-dev \
liblapack-dev \
libpq-dev \
git \
' \
&& apt-get update -yqq \
&& apt-get upgrade -yqq \
&& apt-get install -yqq --no-install-recommends \
$buildDeps \
python3-pip \
python3-requests \
default-libmysqlclient-dev \
apt-utils \
curl \
rsync \
netcat \
locales \
default-mysql-server \
default-mysql-client \
&& apt-get install -y git \
&& sed -i 's/^# en_US.UTF-8 UTF-8$/en_US.UTF-8 UTF-8/g' /etc/locale.gen \
&& locale-gen \
&& update-locale LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 \
&& useradd -ms /bin/bash -d ${AIRFLOW_HOME} airflow \
&& pip install -U pip setuptools wheel \
&& pip install werkzeug==0.16.0 \
&& pip install SQLAlchemy==1.3.15 \
&& pip install Cython \
&& pip install pytz \
&& pip install pyOpenSSL \
&& pip install ndg-httpsclient \
&& pip install pyasn1 \
&& pip install apache-airflow[crypto,celery,postgres,hive,jdbc,mysql]==$AIRFLOW_VERSION \
&& pip install celery[redis]==4.1.1
# && apt-get purge --auto-remove -yqq $buildDeps \
# && apt-get autoremove -yqq --purge \
# && apt-get clean \
# && rm -rf \
# /var/lib/apt/lists/* \
# /tmp/* \
# /var/tmp/* \
# /usr/share/man \
# /usr/share/doc \
# /usr/share/doc-base
# RUN git clone https://github.com/aplbrain/cwl-airflow-parser.git \
# && cd cwl-airflow-parser \
# && pip install -U . \
# && cd ../
COPY ./conduit/scripts/entrypoint.sh /entrypoint.sh
COPY ./conduit/config/airflow.cfg ${AIRFLOW_HOME}/airflow.cfg
RUN chown -R airflow: ${AIRFLOW_HOME}
EXPOSE 8080 5555 8793
# USER airflow
WORKDIR /home
ENTRYPOINT ["/entrypoint.sh"]
COPY ./conduit /conduit
COPY ./setup.py /
RUN pip install -e /