Skip to content

Instantly share code, notes, and snippets.

View juanbernal123's full-sized avatar
🐼

Juan Bernal juanbernal123

🐼
View GitHub Profile
@empirefx
empirefx / Dockerfile
Last active July 23, 2024 12:52
Docker apache php mssql
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 \