forked from DefectDojo/django-DefectDojo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
53 lines (44 loc) · 1.95 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM ubuntu:16.04
MAINTAINER Matt Tesauro <[email protected]>
# # # Create a single Docker image running DefectDojo and all dependencies
# Setup database environment variables. Used to setup an external
# database, and is optional.
# Set a variable using build args.
# i.e. `docker build --build-arg DBNAME="db.foopy.com" ...`
ARG SQLHOST=""
ARG SQLPORT=""
ARG SQLUSER=""
ARG SQLPWD=""
ARG DBNAME=""
ENV SQLHOST=$SQLHOST
ENV SQLPORT=$SQLPORT
ENV SQLUSER=$SQLUSER
ENV SQLPWD=$SQLPWD
ENV DBNAME=$DBNAME
# Update and install basic requirements;
# Install mysql-server already at this place, since we want to avoid
# interactivity when creating a Docker image;
# Also: create the application user;
RUN apt-get update \
&& apt-get install -y sudo git expect wget \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y mysql-server \
&& adduser --disabled-password --gecos "DefectDojo" dojo
# Give the app user sudo permissions and switch executing user
ADD ./docker/etc/dojo_sudo /etc/sudoers.d/
USER dojo:dojo
# Add the application files and start the setup
ADD --chown=dojo:dojo . /opt/django-DefectDojo
WORKDIR /opt/django-DefectDojo
# Add the -y option to avoid interactive prompts
RUN ./setup.bash -y
# Install wkhtmltopdf
RUN wget -O /tmp/wkhtmltox.tar.xz https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz \
&& tar xvfJ /tmp/wkhtmltox.tar.xz -C /tmp \
&& sudo chown root:root /tmp/wkhtmltox/bin/wkhtmltopdf \
&& sudo cp /tmp/wkhtmltox/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf
# Start the DB server and rund the app
ENTRYPOINT sudo chown -R mysql:mysql /var/lib/mysql /var/run/mysqld \
&& sudo service mysql start \
&& (celery -A dojo worker -l info --concurrency 3 >> /opt/django-DefectDojo/worker.log 2>&1 &) \
&& (celery beat -A dojo -l info >> /opt/django-DefectDojo/beat.log 2>&1 &) \
&& (python manage.py runserver 0.0.0.0:8000 >> /opt/django-DefectDojo/dojo.log 2>&1)