1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/phpvirtualbox/Dockerfile
2019-10-21 16:21:10 +08:00

26 lines
628 B
Docker

#
# Dockerfile for phpvirtualbox
#
FROM alpine
MAINTAINER EasyPi Software Foundation
ENV PHPVBOX_VERSION=5.2-1
ENV PHPVBOX_URL=https://github.com/phpvirtualbox/phpvirtualbox/archive/${PHPVBOX_VERSION}.tar.gz
WORKDIR /var/www
RUN set -xe \
&& apk add --no-cache bash nginx php5-fpm php5-cli php5-json php5-soap \
&& apk add --no-cache --virtual build-dependencies curl tar \
&& touch /etc/php5/fpm.d/empty.conf \
&& curl -sSL ${PHPVBOX_URL} | tar xz --strip 1 \
&& apk del build-dependencies \
&& chown nobody:nobody -R /var/www
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
CMD php-fpm && nginx