Skip to content

Instantly share code, notes, and snippets.

View pjmjmaciel's full-sized avatar

Paulo Maciel pjmjmaciel

View GitHub Profile
@pjmjmaciel
pjmjmaciel / Dockerfile
Created June 1, 2022 11:05 — forked from xenogew/Dockerfile
Example of PHP 7.2.x Docker image install with MS SQL Server extensions
FROM php:7.2.11-fpm
WORKDIR /application
ENV ACCEPT_EULA=Y
# Fix debconf warnings upon build
ARG DEBIAN_FRONTEND=noninteractive
# Install selected extensions and other stuff
RUN apt-get update \