2019-10-10 05:42:10 -05:00
|
|
|
ARG FROM=python:3.7-alpine
|
|
|
|
FROM ${FROM} as main
|
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 \
|
|
|
|
libffi-dev \
|
|
|
|
libxml2-dev \
|
|
|
|
libxslt-dev \
|
|
|
|
openldap-dev \
|
|
|
|
postgresql-dev \
|
2018-08-13 16:04:09 -05:00
|
|
|
ttf-ubuntu-font-family \
|
|
|
|
wget
|
2017-08-30 04:08:21 -05:00
|
|
|
|
2018-02-16 03:25:26 -06:00
|
|
|
RUN pip install \
|
|
|
|
# gunicorn is used for launching netbox
|
|
|
|
gunicorn \
|
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' \
|
2018-08-14 12:08:34 -05:00
|
|
|
# pinning django to the version required by netbox
|
|
|
|
# adding it here, to install the correct version of
|
|
|
|
# django-rq
|
2019-05-09 02:57:01 -05:00
|
|
|
'Django>=2.2,<2.3' \
|
2018-08-10 18:55:09 -05:00
|
|
|
# django-rq is used for webhooks
|
|
|
|
django-rq
|
2017-04-21 06:45:34 -05:00
|
|
|
|
2017-08-30 04:07:28 -05:00
|
|
|
ARG BRANCH=master
|
2019-06-12 10:53:35 -05:00
|
|
|
|
|
|
|
WORKDIR /tmp
|
|
|
|
|
|
|
|
# As the requirements don't change very often,
|
|
|
|
# and as they take some time to compile,
|
|
|
|
# we try to cache them very agressively.
|
2019-07-02 14:32:58 -05:00
|
|
|
ARG REQUIREMENTS_URL=https://raw.githubusercontent.com/netbox-community/netbox/$BRANCH/requirements.txt
|
2019-05-22 10:44:50 -05:00
|
|
|
ADD ${REQUIREMENTS_URL} requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
2019-06-12 10:53:35 -05:00
|
|
|
# Cache bust when the upstream branch changes:
|
|
|
|
# ADD will fetch the file and check if it has changed
|
|
|
|
# If not, Docker will use the existing build cache.
|
|
|
|
# If yes, Docker will bust the cache and run every build step from here on.
|
2019-07-02 14:32:58 -05:00
|
|
|
ARG REF_URL=https://api.github.com/repos/netbox-community/netbox/contents?ref=$BRANCH
|
2019-05-23 10:20:39 -05:00
|
|
|
ADD ${REF_URL} version.json
|
|
|
|
|
2019-06-12 10:53:35 -05:00
|
|
|
WORKDIR /opt
|
|
|
|
|
2019-07-02 14:32:58 -05:00
|
|
|
ARG URL=https://github.com/netbox-community/netbox/archive/$BRANCH.tar.gz
|
2017-04-21 06:45:34 -05:00
|
|
|
RUN wget -q -O - "${URL}" | tar xz \
|
2017-06-19 02:24:13 -05:00
|
|
|
&& mv netbox* 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
|
|
|
|
|
|
|
#####
|
|
|
|
## LDAP specific tasks
|
|
|
|
#####
|
|
|
|
|
|
|
|
FROM main as ldap
|
|
|
|
|
|
|
|
RUN pip install django_auth_ldap
|
|
|
|
|
|
|
|
COPY docker/ldap_config.docker.py /opt/netbox/netbox/netbox/ldap_config.py
|
|
|
|
COPY configuration/ldap_config.py /etc/netbox/config/ldap_config.py
|