Create Dockerfile

This commit is contained in:
Lukas M 2018-12-30 00:04:13 +01:00 committed by GitHub
parent d60b0c8805
commit 4ec8490c55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 66 additions and 0 deletions

66
docker/Dockerfile Normal file
View File

@ -0,0 +1,66 @@
FROM alpine:3.8 as builder
ARG VERSION
ENV VERSION master
#ENV VERSION 0.7.0
RUN apk --update add python3
RUN apk --update add --virtual build-dependencies \
git \
tar \
curl \
python3-dev \
npm \
bash \
musl-dev \
gcc \
autoconf \
automake \
make \
nasm \
zlib-dev \
postgresql-dev \
libressl-dev \
libffi-dev \
cyrus-sasl-dev \
openldap-dev
#RUN git clone https://github.com/Netflix/lemur
RUN mkdir -p /opt/lemur && curl -sSL https://github.com/Netflix/lemur/archive/$VERSION.tar.gz | tar xz -C /opt/lemur --strip-components=1
RUN ls -lha /opt/lemur/
WORKDIR /opt/lemur
RUN pip3 install --upgrade pip
RUN npm install --unsafe-perm
RUN pip3 install setuptools
RUN pip3 install -e .
RUN node_modules/.bin/gulp build
RUN node_modules/.bin/gulp package --urlContextPath=$(urlContextPath)
RUN apk del build-dependencies
#####################
RUN apk add --update libldap postgresql-client bash nginx supervisor
RUN mkdir -p /run/nginx/
WORKDIR /
COPY entrypoint /
RUN chmod +x /entrypoint
COPY lemur.py /root/.lemur/lemur.conf.py
COPY supervisor.conf /
COPY default.conf /etc/nginx/conf.d/
ENTRYPOINT ["/entrypoint"]
CMD ["/usr/bin/supervisord","-c","supervisor.conf"]