docker-nginx/Dockerfile
2015-08-31 09:44:06 +02:00

15 lines
427 B
Docker

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