Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM ubuntu
FROM ubuntu:14.04
MAINTAINER Christian Lück <christian@lueck.tv>

RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
nginx supervisor php5-fpm php5-cli \
graphviz python \
graphviz python3 python-pip python-dev build-essential graphviz \
git

# add webgrind as the only nginx site
Expand All @@ -15,6 +15,7 @@ RUN rm /etc/nginx/sites-enabled/default
RUN git clone https://github.com/jokkedk/webgrind /var/www
RUN chown www-data:www-data -R /var/www

RUN pip install gprof2dot
# expose only nginx HTTP port
EXPOSE 80

Expand Down