-
Notifications
You must be signed in to change notification settings - Fork 11
/
Dockerfile
executable file
·66 lines (51 loc) · 2.66 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
54
55
56
57
58
59
60
61
62
63
64
65
66
# Base python 3.4 build, inspired by https://github.com/Pakebo/eb-docker-django-simple
# Python 3.4 | Django
FROM python:3.4
MAINTAINER Glyn Jackson ([email protected])
##############################################################################
# Environment variables
##############################################################################
# Get noninteractive frontend for Debian to avoid some problems:
# debconf: unable to initialize frontend: Dialog
ENV DEBIAN_FRONTEND noninteractive
##############################################################################
# OS Updates and Python packages
##############################################################################
RUN apt-get update \
&& apt-get upgrade -y \
&& apt-get install -y
RUN apt-get install -y apt-utils
# Libs required for geospatial libraries on Debian...
RUN apt-get -y install binutils libproj-dev gdal-bin
##############################################################################
# A Few pip installs not commonly in requirements.txt
##############################################################################
RUN apt-get install -y nano wget
# build dependencies for postgres and image bindings
RUN apt-get install -y python-imaging python-psycopg2
##############################################################################
# setup startup script for gunicord WSGI service
##############################################################################
RUN groupadd webapps
RUN useradd webapp -G webapps
RUN mkdir -p /var/log/webapp/ && chown -R webapp /var/log/webapp/ && chmod -R u+rX /var/log/webapp/
RUN mkdir -p /var/run/webapp/ && chown -R webapp /var/run/webapp/ && chmod -R u+rX /var/run/webapp/
##############################################################################
# Install and configure supervisord
##############################################################################
RUN apt-get install -y supervisor
RUN mkdir -p /var/log/supervisor
ADD ./deploy/supervisor_conf.d/webapp.conf /etc/supervisor/conf.d/webapp.conf
##############################################################################
# Install dependencies and run scripts.
##############################################################################
ADD . /var/projects/mysite
WORKDIR /var/projects/mysite
RUN pip install -r requirements.txt
##############################################################################
# Run start.sh script when the container starts.
# Note: If you run migrations etc outside CMD, envs won't be available!
##############################################################################
CMD ["sh", "./deploy/container_start.sh"]
# Expose listen ports
EXPOSE 8002