Skip to content

Instantly share code, notes, and snippets.

@TimoDJatomika
Created December 8, 2018 20:14
Show Gist options
  • Save TimoDJatomika/880c65385232e9ec050404a330001335 to your computer and use it in GitHub Desktop.
Save TimoDJatomika/880c65385232e9ec050404a330001335 to your computer and use it in GitHub Desktop.
composer Dockerfile for Laravel with LDAP
FROM ubuntu:18.04
LABEL maintainer="Timo Stankowitz <[email protected]>"
# no interaction for tzdata
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Berlin
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y php
RUN apt-get install -y composer
RUN apt-get install -y php-ldap
# for laravel
RUN apt-get install -y curl php-curl php-mbstring php-gettext
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment