Created
December 8, 2018 20:14
-
-
Save TimoDJatomika/880c65385232e9ec050404a330001335 to your computer and use it in GitHub Desktop.
composer Dockerfile for Laravel with LDAP
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 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