Skip to content

Instantly share code, notes, and snippets.

View jazeabby's full-sized avatar

Abhishek Jain jazeabby

View GitHub Profile
@jazeabby
jazeabby / DockerFile
Created November 12, 2020 20:15
DockerFile for laravel application
FROM php:7.4-cli
# Update packages
RUN apt-get update
# Install PHP and composer dependencies
RUN apt-get install -qq git curl libmcrypt-dev libjpeg-dev libpng-dev libfreetype6-dev libbz2-dev libzip-dev
# Clear out the local repository of retrieved package files
RUN apt-get clean