2019-02-21 15:30:40 +01:00
|
|
|
FROM python:3.6-alpine3.9
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2017-04-21 13:45:34 +02: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 23:04:09 +02:00
|
|
|
ttf-ubuntu-font-family \
|
|
|
|
wget
|
2017-08-30 11:08:21 +02:00
|
|
|
|
2018-02-16 10:25:26 +01:00
|
|
|
RUN pip install \
|
|
|
|
# gunicorn is used for launching netbox
|
|
|
|
gunicorn \
|
2018-03-06 01:56:18 +01:00
|
|
|
# napalm is used for gathering information from network devices
|
|
|
|
napalm \
|
2018-02-16 10:25:26 +01:00
|
|
|
# ruamel is used in startup_scripts
|
2018-08-11 01:55:09 +02:00
|
|
|
ruamel.yaml \
|
2018-08-14 19:08:34 +02:00
|
|
|
# pinning django to the version required by netbox
|
|
|
|
# adding it here, to install the correct version of
|
|
|
|
# django-rq
|
2019-05-09 09:57:01 +02:00
|
|
|
'Django>=2.2,<2.3' \
|
2018-08-11 01:55:09 +02:00
|
|
|
# django-rq is used for webhooks
|
|
|
|
django-rq
|
2017-04-21 13:45:34 +02:00
|
|
|
|
2017-08-30 11:07:28 +02:00
|
|
|
ARG BRANCH=master
|
2019-06-12 17:53:35 +02: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-05-22 17:44:50 +02:00
|
|
|
ARG REQUIREMENTS_URL=https://raw.githubusercontent.com/digitalocean/netbox/$BRANCH/requirements.txt
|
|
|
|
ADD ${REQUIREMENTS_URL} requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
|
2019-06-12 17:53:35 +02: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-05-28 16:42:40 +02:00
|
|
|
ARG REF_URL=https://api.github.com/repos/digitalocean/netbox/contents?ref=$BRANCH
|
2019-05-23 17:20:39 +02:00
|
|
|
ADD ${REF_URL} version.json
|
|
|
|
|
2019-06-12 17:53:35 +02:00
|
|
|
WORKDIR /opt
|
|
|
|
|
2017-04-21 13:45:34 +02:00
|
|
|
ARG URL=https://github.com/digitalocean/netbox/archive/$BRANCH.tar.gz
|
|
|
|
RUN wget -q -O - "${URL}" | tar xz \
|
2017-06-19 09:24:13 +02:00
|
|
|
&& mv netbox* netbox
|
2017-04-21 13:45:34 +02:00
|
|
|
|
2017-10-13 10:10:43 +02:00
|
|
|
COPY docker/configuration.docker.py /opt/netbox/netbox/netbox/configuration.py
|
2018-04-03 09:02:19 +02:00
|
|
|
COPY configuration/gunicorn_config.py /etc/netbox/config/
|
2017-05-09 10:12:36 +02:00
|
|
|
COPY docker/nginx.conf /etc/netbox-nginx/nginx.conf
|
2019-06-12 17:53:35 +02:00
|
|
|
COPY docker/docker-entrypoint.sh /opt/netbox/docker-entrypoint.sh
|
2018-02-16 10:49:34 +01:00
|
|
|
COPY startup_scripts/ /opt/netbox/startup_scripts/
|
|
|
|
COPY initializers/ /opt/netbox/initializers/
|
2018-04-03 09:02:19 +02:00
|
|
|
COPY configuration/configuration.py /etc/netbox/config/configuration.py
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2017-08-30 11:09:24 +02:00
|
|
|
WORKDIR /opt/netbox/netbox
|
|
|
|
|
2018-02-16 10:25:26 +01:00
|
|
|
ENTRYPOINT [ "/opt/netbox/docker-entrypoint.sh" ]
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2018-08-13 23:04:09 +02:00
|
|
|
CMD ["gunicorn", "-c /etc/netbox/config/gunicorn_config.py", "netbox.wsgi"]
|
2018-02-02 12:48:38 +01:00
|
|
|
|
|
|
|
LABEL SRC_URL="$URL"
|
2018-04-04 09:44:58 +02:00
|
|
|
|
|
|
|
ARG NETBOX_DOCKER_PROJECT_VERSION=snapshot
|
|
|
|
LABEL NETBOX_DOCKER_PROJECT_VERSION="$NETBOX_DOCKER_PROJECT_VERSION"
|