1# LGPLv2+ example file
2
3# This is a comment
4FROM ubuntu:14.04
5MAINTAINER James Turnbull <james@example.com> # comment
6ENV REFRESHED_AT 2014-06-01
7
8RUN apt-get -yqq update
9RUN apt-get install -yqq software-properties-common python-software-properties
10RUN add-apt-repository ppa:chris-lea/redis-server
11RUN apt-get -yqq update
12RUN apt-get -yqq install redis-server redis-tools
13RUN apt-get -yqq update # comment
14
15VOLUME [ "/var/lib/redis", "/var/log/redis/" ]
16
17EXPOSE 6379
18
19CMD []
20