Skip to content

Instantly share code, notes, and snippets.

View dhanyn10's full-sized avatar
🏦
new job

Dhany Nurdiansyah dhanyn10

🏦
new job
View GitHub Profile
@dhanyn10
dhanyn10 / Dockerfile
Created March 25, 2022 17:03
Install Ms SQL Server driver in docker. Works with laravel 9
#Referensi:https://github.com/microsoft/msphpsql/issues/1346#issuecomment-1000233759
ARG PHP_VERSION=8.0
# "php" stage
FROM php:${PHP_VERSION}-buster
# Install system dependencies
RUN apt update && apt install -y \
git \