Warning, /frameworks/syntax-highlighting/autotests/input/Dockerfile is written in an unsupported language. File is not indexed.
0001 # LGPLv2+ example file 0002 0003 # This is a comment 0004 FROM ubuntu:14.04 0005 MAINTAINER James Turnbull <james@example.com> # comment 0006 ENV REFRESHED_AT 2014-06-01 0007 0008 RUN apt-get -yqq update 0009 RUN apt-get install -yqq software-properties-common python-software-properties 0010 RUN add-apt-repository ppa:chris-lea/redis-server 0011 RUN apt-get -yqq update 0012 RUN apt-get -yqq install redis-server redis-tools 0013 RUN apt-get -yqq update # comment 0014 0015 VOLUME [ "/var/lib/redis", "/var/log/redis/" ] 0016 0017 EXPOSE 6379 0018 0019 CMD []