Skip to content

Instantly share code, notes, and snippets.

@Machy8
Machy8 / Dockerfile
Last active April 7, 2023 01:33
PHP-FPM 7.1 with Unix Sockets + Nginx in Docker
FROM debian:stretch
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
wget \
zip \
git \
unzip && \
rm -rf /var/lib/apt/lists/* && \
apt-get clean