docker-nginx/Dockerfile
2015-08-24 13:08:06 +01:00

16 lines
382 B
Docker

FROM linuxserver/baseimage.nginx
MAINTAINER Stian Larsen <lonix@linuxserver.io>
#Applying stuff
RUN apt-get update -q && \
apt-get install php5-mysql php5-mcrypt php5-curl php5-gd php5-cgi php5-pgsql php5-sqlite -qy && \
apt-get clean && rm -rf /tmp/* /var/lib/apt/lists/* /var/tmp/*
#Adding Custom files
RUN mkdir -p /defaults
# Volumes and Ports
VOLUME /config
EXPOSE 80 443