Skip to content

Commit 4b6eaac

Browse files
committed
Use composer
1 parent 2a6eba9 commit 4b6eaac

217 files changed

Lines changed: 29 additions & 10857 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Dockerfile

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1+
FROM composer AS vendor
2+
COPY composer.json composer.json
3+
COPY composer.lock composer.lock
4+
RUN composer install \
5+
--ignore-platform-reqs \
6+
--no-interaction \
7+
--no-plugins \
8+
--no-scripts \
9+
--prefer-dist
10+
111
FROM php:7.2-apache
2-
RUN apt-get update && apt-get -y install apt-utils nano libyaml-dev
12+
RUN apt-get update && apt-get -y install apt-utils libyaml-dev
313
RUN docker-php-ext-install gettext
414
RUN pecl channel-update pecl.php.net && pecl install yaml-2.0.0 && docker-php-ext-enable yaml
515
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
616
COPY . /var/www/html/
17+
COPY --from=vendor /app/vendor/ /var/www/html/vendor/
18+

data-new/BuildAndDeployment/Build/1/DefinedBuildProcess.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

data-new/BuildAndDeployment/Build/2/BuildingAndTestingOfArtifactsInVirtualEnvironments.yaml

Lines changed: 0 additions & 24 deletions
This file was deleted.

data-new/BuildAndDeployment/Build/3/SigningOfArtifacts.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

data-new/BuildAndDeployment/Build/3/SigningOfCode.yaml

Lines changed: 0 additions & 19 deletions
This file was deleted.

data-new/BuildAndDeployment/Deployment/1/DefinedDeploymentProcess.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

data-new/BuildAndDeployment/Deployment/2/BackupBeforeDeployment.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

data-new/BuildAndDeployment/Deployment/2/EnvironmentDependingConfigurationParameters.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

data-new/BuildAndDeployment/Deployment/2/UsageOfTrustedImages.yaml

Lines changed: 0 additions & 21 deletions
This file was deleted.

data-new/BuildAndDeployment/Deployment/3/HandoverOfConfidentialParameters.yaml

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)