Skip to content

Instantly share code, notes, and snippets.

@Ljz7
Ljz7 / Dockerfile
Created November 8, 2019 17:41 — forked from Majkl578/Dockerfile
Dockerized example for article at Pehapkari.cz about running multiple PHP versions: https://pehapkari.cz/blog/2017/03/27/multiple-php-versions-the-easy-way/
FROM debian:stretch
ENV DEBIAN_FRONTEND noninteractive
# install NGINX
RUN apt-get update && \
apt-get install -y nginx --no-install-recommends && \
rm -rf /var/lib/apt/lists/*