flux-querybuilder/docker/php/Dockerfile

11 lines
237 B
Text
Raw Normal View History

2023-02-10 14:22:42 +01:00
FROM php:7.2-cli
COPY . /var/www
WORKDIR /var/www
RUN apt-get update && \
apt-get install -y \
curl \
git \
gnupg \
unzip
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer