Initial commit
This commit is contained in:
22
docker/Dockerfile
Normal file
22
docker/Dockerfile
Normal file
@ -0,0 +1,22 @@
|
||||
FROM php
|
||||
MAINTAINER Conjecto <contact@conjecto.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
--no-install-recommends git zip zlib1g-dev
|
||||
|
||||
RUN docker-php-ext-install -j$(nproc) zip
|
||||
|
||||
COPY app/ /var/app/
|
||||
WORKDIR /var/app/
|
||||
|
||||
# install composer
|
||||
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
|
||||
RUN php -r "if (hash_file('SHA384', 'composer-setup.php') === '544e09ee996cdf60ece3804abc52599c22b1f40f4323403c44d44fdfdd586475ca9813a858088ffbc1f233e9b180f061') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
|
||||
RUN php composer-setup.php
|
||||
RUN php -r "unlink('composer-setup.php');"
|
||||
|
||||
# install vendors
|
||||
RUN php composer.phar install
|
||||
|
||||
# run server
|
||||
CMD ["php", "-S", "0.0.0.0:80", "-t", "/var/app/www"]
|
Reference in New Issue
Block a user