forked from ruflin/Elastica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (29 loc) · 979 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# PHP 6 Docker file with Composer installed
FROM ruflin/elastica-dev-base
MAINTAINER Nicolas Ruflin <[email protected]>
# ENVIRONMENT Setup - Needed in this image?
ENV ES_HOST elasticsearch
ENV PROXY_HOST nginx
# Install dependencies
WORKDIR /elastica
# Copy composer file first as this only changes rarely
COPY composer.json /elastica/
ENV ELASTICA_DEV true
# Set empty environment so that Makefile commands inside container do not prepend the environment
ENV RUN_ENV " "
# Commands are taken from Makefile. Everytime the makefile is updated, this commands is rerun
RUN mkdir -p \
./build/code-browser \
./build/docs \
./build/logs \
./build/pdepend \
./build/coverage
# Prefer source removed as automatic fallback now
RUN composer install
RUN composer dump-autoload
# Copy rest of the files, ignoring .dockerignore files
COPY lib /elastica/lib
COPY test /elastica/test
COPY Makefile /elastica/
COPY docker-entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]