11 lines
302 B
Docker
11 lines
302 B
Docker
# Dockerfile extending the generic PHP image with application files for a
|
|
# single application.
|
|
FROM gcr.io/google-appengine/php:latest
|
|
|
|
# The Docker image will configure the document root according to this
|
|
# environment variable.
|
|
ENV DOCUMENT_ROOT {document_root}
|
|
|
|
# Allow custom CMD
|
|
CMD {entrypoint}
|