Reworked the Dockerfile with alpinelinux
This commit is contained in:
parent
fee1eed522
commit
1e96f5a191
39
Dockerfile
39
Dockerfile
@ -1,20 +1,35 @@
|
|||||||
FROM python:2.7-wheezy
|
FROM python:2.7-alpine
|
||||||
|
|
||||||
WORKDIR /opt/netbox
|
RUN apk add --no-cache \
|
||||||
|
bash \
|
||||||
|
build-base \
|
||||||
|
ca-certificates \
|
||||||
|
cyrus-sasl-dev \
|
||||||
|
graphviz \
|
||||||
|
jpeg-dev \
|
||||||
|
libffi-dev \
|
||||||
|
libxml2-dev \
|
||||||
|
libxslt-dev \
|
||||||
|
openldap-dev \
|
||||||
|
openssl-dev \
|
||||||
|
postgresql-dev \
|
||||||
|
wget \
|
||||||
|
&& pip install gunicorn==17.5 django-auth-ldap
|
||||||
|
|
||||||
|
WORKDIR /opt
|
||||||
|
|
||||||
ARG BRANCH=v2-beta
|
ARG BRANCH=v2-beta
|
||||||
ARG URL=https://github.com/digitalocean/netbox.git
|
ARG URL=https://github.com/digitalocean/netbox/archive/$BRANCH.tar.gz
|
||||||
RUN git clone --depth 1 $URL -b $BRANCH . && \
|
RUN wget -q -O - "${URL}" | tar xz \
|
||||||
apt-get update -qq && apt-get install -y libldap2-dev libsasl2-dev libssl-dev graphviz && \
|
&& ln -s netbox* netbox
|
||||||
pip install gunicorn==17.5 && \
|
|
||||||
pip install django-auth-ldap && \
|
|
||||||
pip install -r requirements.txt
|
|
||||||
|
|
||||||
ADD docker/docker-entrypoint.sh /docker-entrypoint.sh
|
WORKDIR /opt/netbox
|
||||||
ADD netbox/netbox/configuration.docker.py /opt/netbox/netbox/netbox/configuration.py
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
|
RUN ln -s configuration.docker.py netbox/netbox/configuration.py
|
||||||
|
COPY docker/gunicorn_config.py /opt/netbox/
|
||||||
|
|
||||||
|
COPY docker/docker-entrypoint.sh /docker-entrypoint.sh
|
||||||
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|
||||||
|
|
||||||
ADD docker/gunicorn_config.py /opt/netbox/
|
|
||||||
ADD docker/nginx.conf /etc/netbox-nginx/
|
|
||||||
VOLUME ["/etc/netbox-nginx/"]
|
VOLUME ["/etc/netbox-nginx/"]
|
||||||
|
Loading…
Reference in New Issue
Block a user