Skip to content

Commit

Permalink
I forgot to add the testfiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Elliot Schlegelmilch committed Dec 17, 2018
1 parent 447b0c1 commit 5670893
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-amazeeio}/php:7.3-cli-drupal

COPY composer.json composer.lock /app/
COPY scripts /app/scripts
RUN composer install --no-dev
COPY . /app

ENV WEBROOT=web
2 changes: 2 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.mariadb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-amazeeio}/mariadb-drupal
9 changes: 9 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.nginx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ARG CLI_IMAGE
ARG IMAGE_REPO
FROM ${CLI_IMAGE:-builder} as builder

FROM ${IMAGE_REPO:-amazeeio}/nginx-drupal

COPY --from=builder /app /app

ENV WEBROOT=web
7 changes: 7 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
ARG CLI_IMAGE
ARG IMAGE_REPO
FROM ${CLI_IMAGE:-builder} as builder

FROM ${IMAGE_REPO:-amazeeio}/php:7.3-fpm

COPY --from=builder /app /app
2 changes: 2 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.postgres
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-amazeeio}/postgres-drupal
2 changes: 2 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.redis
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-amazeeio}/redis
3 changes: 3 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.solr
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ARG IMAGE_REPO

FROM ${IMAGE_REPO:-amazeeio}/solr:5.5-drupal
2 changes: 2 additions & 0 deletions tests/files/drupal8-dockerfiles/php7.3/Dockerfile.varnish
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ARG IMAGE_REPO
FROM ${IMAGE_REPO:-amazeeio}/varnish-drupal

0 comments on commit 5670893

Please sign in to comment.