This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM php:7.3.5-fpm AS base | |
# Add Microsoft repo for Microsoft ODBC Driver 17 for Linux | |
RUN apt-get update && apt-get install -y gnupg apt-transport-https \ | |
&& curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - \ | |
&& curl https://packages.microsoft.com/config/debian/9/prod.list > /etc/apt/sources.list.d/mssql-release.list | |
# Install Dependencies | |
# libpng-dev, libjpeg-dev and libwebp-dev for gd extension | |
# unzip for composer |