forked from darron/django-uwsgi-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
37 lines (26 loc) · 1.28 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
FROM ubuntu:16.04
MAINTAINER Norman Denayer <[email protected]>
# Install required packages and remove the apt packages cache when done.
RUN set -x && \
apt-get update && \
apt-get upgrade -y && \
apt-get install -y git python3 python3-dev python3-setuptools python3-pip nginx supervisor sqlite3 && \
pip3 install -U pip setuptools && \
rm -rf /var/lib/apt/lists/*
# install uwsgi now because it takes a little while
RUN set -x && pip3 install uwsgi
# setup all the configfiles
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
COPY nginx-app.conf /etc/nginx/sites-available/default
COPY supervisor-app.conf /etc/supervisor/conf.d/
# COPY requirements.txt and RUN pip install BEFORE adding the rest of your code, this will cause Docker's caching mechanism
# to prevent re-installing (all your) dependencies when you made a change a line or two in your app.
COPY app/requirements.txt /home/docker/code/app/
RUN set -x && pip3 install -r /home/docker/code/app/requirements.txt
# add (the rest of) our code
COPY . /home/docker/code/
# install django, normally you would remove this step because your project would already
# be installed in the code/app/ directory
RUN set -x && django-admin.py startproject website /home/docker/code/app/
EXPOSE 80
CMD ["supervisord", "-n"]