2018-05-09 09:47:50 +02:00
|
|
|
FROM python:3.6-alpine3.7
|
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
|
|
|
|
'Django>=1.11,<2.1' \
|
2018-08-11 01:55:09 +02:00
|
|
|
# django-rq is used for webhooks
|
|
|
|
django-rq
|
2017-04-21 13:45:34 +02:00
|
|
|
|
|
|
|
WORKDIR /opt
|
2017-04-19 16:48:21 +02:00
|
|
|
|
2017-08-30 11:07:28 +02:00
|
|
|
ARG BRANCH=master
|
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
|
|
|
|
|
|
|
WORKDIR /opt/netbox
|
|
|
|
RUN pip install -r requirements.txt
|
2017-04-19 16:48:21 +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
|
2018-02-16 10:25:26 +01:00
|
|
|
COPY docker/docker-entrypoint.sh 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"
|