forked from kartoza/docker-mapserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
68 lines (50 loc) · 2.01 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
67
68
# Mapserver for Docker
FROM ubuntu:trusty
MAINTAINER Admire Nyakudya<[email protected]>
ENV LANG C.UTF-8
RUN update-locale LANG=C.UTF-8
# Update and upgrade system
RUN apt-get -qq update --fix-missing && apt-get -qq --yes upgrade
#ADD 71-apt-cacher-ng /etc/apt/apt.conf.d/71-apt-cacher-ng
#-------------Application Specific Stuff ----------------------------------------------------
# Install mapcache compilation prerequisites
RUN apt-get install -y software-properties-common g++ make cmake wget git bzip2 apache2 apache2-threaded-dev curl apache2-mpm-worker
# Install mapcache dependencies provided by Ubuntu repositories
RUN apt-get install -y \
libxml2-dev \
libxslt1-dev \
libproj-dev \
libfribidi-dev \
libcairo2-dev \
librsvg2-dev \
libmysqlclient-dev \
libpq-dev \
libcurl4-gnutls-dev \
libexempi-dev \
libgdal-dev \
libgeos-dev \
gdal-bin
ADD resources /tmp/resources
ADD setup.sh /setup.sh
RUN chmod 0755 /setup.sh
RUN /setup.sh
# Configure localhost in Apache
RUN cp /tmp/resources/000-default.conf /etc/apache2/sites-available/
# To be able to install libapache.
RUN echo 'deb http://archive.ubuntu.com/ubuntu trusty multiverse' >> /etc/apt/sources.list
RUN echo 'deb http://archive.ubuntu.com/ubuntu trusty-updates multiverse' >> /etc/apt/sources.list
RUN echo 'deb http://security.ubuntu.com/ubuntu trusty-security multiverse' >> /etc/apt/sources.list
RUN apt-get update
# Install PHP5 and necessary modules
RUN apt-get install -y libapache2-mod-fastcgi php5-fpm libapache2-mod-php5 php5-common php5-cli php5-fpm php5
# Enable these Apache modules
RUN a2enmod actions cgi alias
# Apache configuration for PHP-FPM
RUN cp /tmp/resources/php5-fpm.conf /etc/apache2/conf-available/
# Link to cgi-bin executable
RUN chmod o+x /usr/local/bin/mapserv
RUN ln -s /usr/local/bin/mapserv /usr/lib/cgi-bin/mapserv
RUN chmod 755 /usr/lib/cgi-bin
EXPOSE 80
ENV HOST_IP `ifconfig | grep inet | grep Mask:255.255.255.0 | cut -d ' ' -f 12 | cut -d ':' -f 2`
CMD apachectl -D FOREGROUND