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.0-apache | |
COPY src/ /var/www/html/ | |
# Add Microsoft repo for Microsoft ODBC Driver 13 for Linux | |
RUN apt-get update && apt-get install -y \ | |
apt-transport-https \ | |
gnupg \ | |
&& 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 \ |