2019-10-10 05:42:10 -05:00
|
|
|
ARG FROM=python:3.7-alpine
|
2019-10-13 09:00:42 -05:00
|
|
|
FROM ${FROM} as builder
|
2017-04-19 09:48:21 -05:00
|
|
|
|
2017-04-21 06:45:34 -05:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
bash \
|
|
|
|
build-base \
|
|
|
|
ca-certificates \
|
|
|
|
cyrus-sasl-dev \
|
|
|
|
graphviz \
|
|
|
|
jpeg-dev \
|
2019-10-13 09:00:42 -05:00
|
|
|
libevent-dev \
|
2017-04-21 06:45:34 -05:00
|
|
|
libffi-dev \
|
|
|
|
libxslt-dev \
|
|
|
|
openldap-dev \
|
2019-10-13 09:00:42 -05:00
|
|
|
postgresql-dev
|
|
|
|
|
|
|
|
WORKDIR /install
|
2017-08-30 04:08:21 -05:00
|
|
|
|
2019-10-13 09:00:42 -05:00
|
|
|
RUN pip install --install-option="--prefix=/install" \
|
2018-02-16 03:25:26 -06:00
|
|
|
# gunicorn is used for launching netbox
|
|
|
|
gunicorn \
|
2019-10-13 09:00:42 -05:00
|
|
|
greenlet \
|
|
|
|
eventlet \
|
2018-03-05 18:56:18 -06:00
|
|
|
# napalm is used for gathering information from network devices
|
|
|
|
napalm \
|
2018-02-16 03:25:26 -06:00
|
|
|
# ruamel is used in startup_scripts
|
2019-07-30 06:09:02 -05:00
|
|
|
'ruamel.yaml>=0.15,<0.16' \
|
2019-10-13 09:00:42 -05:00
|
|
|
# django_auth_ldap is required for ldap
|
|
|
|
django_auth_ldap
|
|
|
|
|
|
|
|
COPY .netbox/netbox/requirements.txt /
|
|
|
|
RUN pip install --install-option="--prefix=/install" -r /requirements.txt
|
|
|
|
|
|
|
|
###
|
|
|
|
# Main stage
|
|
|
|
###
|
|
|
|
|
|
|
|
ARG FROM
|
|
|
|
FROM ${FROM} as main
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
bash \
|
|
|
|
ca-certificates \
|
|
|
|
graphviz \
|
|
|
|
libevent \
|
|
|
|
libffi \
|
|
|
|
libjpeg-turbo \
|
|
|
|
libressl \
|
|
|
|
libxslt \
|
|
|
|
postgresql-libs \
|
|
|
|
ttf-ubuntu-font-family
|
2019-05-23 10:20:39 -05:00
|
|
|
|
2019-06-12 10:53:35 -05:00
|
|
|
WORKDIR /opt
|
|
|
|
|
2019-10-13 09:00:42 -05:00
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
COPY .netbox/netbox /opt/netbox
|
2017-04-21 06:45:34 -05:00
|
|
|
|
2017-10-13 03:10:43 -05:00
|
|
|
COPY docker/configuration.docker.py /opt/netbox/netbox/netbox/configuration.py
|
2018-04-03 02:02:19 -05:00
|
|
|
COPY configuration/gunicorn_config.py /etc/netbox/config/
|
2017-05-09 03:12:36 -05:00
|
|
|
COPY docker/nginx.conf /etc/netbox-nginx/nginx.conf
|
2019-06-12 10:53:35 -05:00
|
|
|
COPY docker/docker-entrypoint.sh /opt/netbox/docker-entrypoint.sh
|
2018-02-16 03:49:34 -06:00
|
|
|
COPY startup_scripts/ /opt/netbox/startup_scripts/
|
|
|
|
COPY initializers/ /opt/netbox/initializers/
|
2018-04-03 02:02:19 -05:00
|
|
|
COPY configuration/configuration.py /etc/netbox/config/configuration.py
|
2017-04-19 09:48:21 -05:00
|
|
|
|
2017-08-30 04:09:24 -05:00
|
|
|
WORKDIR /opt/netbox/netbox
|
|
|
|
|
2018-02-16 03:25:26 -06:00
|
|
|
ENTRYPOINT [ "/opt/netbox/docker-entrypoint.sh" ]
|
2017-04-19 09:48:21 -05:00
|
|
|
|
2018-08-13 16:04:09 -05:00
|
|
|
CMD ["gunicorn", "-c /etc/netbox/config/gunicorn_config.py", "netbox.wsgi"]
|
2018-02-02 05:48:38 -06:00
|
|
|
|
|
|
|
LABEL SRC_URL="$URL"
|
2018-04-04 02:44:58 -05:00
|
|
|
|
|
|
|
ARG NETBOX_DOCKER_PROJECT_VERSION=snapshot
|
|
|
|
LABEL NETBOX_DOCKER_PROJECT_VERSION="$NETBOX_DOCKER_PROJECT_VERSION"
|
2019-10-10 05:42:10 -05:00
|
|
|
|
2019-10-13 09:00:42 -05:00
|
|
|
ARG NETBOX_BRANCH=custom_build
|
|
|
|
LABEL NETBOX_BRANCH="$NETBOX_BRANCH"
|
|
|
|
|
2019-10-10 05:42:10 -05:00
|
|
|
#####
|
2019-10-13 09:00:42 -05:00
|
|
|
## LDAP specific configuration
|
2019-10-10 05:42:10 -05:00
|
|
|
#####
|
|
|
|
|
|
|
|
FROM main as ldap
|
|
|
|
|
2019-10-13 09:00:42 -05:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
libsasl \
|
|
|
|
libldap \
|
|
|
|
util-linux
|
2019-10-10 05:42:10 -05:00
|
|
|
|
|
|
|
COPY docker/ldap_config.docker.py /opt/netbox/netbox/netbox/ldap_config.py
|
|
|
|
COPY configuration/ldap_config.py /etc/netbox/config/ldap_config.py
|