mirror of
https://github.com/linuxserver/docker-nginx.git
synced 2026-02-11 21:08:32 +08:00
16 lines
382 B
Docker
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
|