Skip to content
Snippets Groups Projects
Commit f81bcf74 authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #5926 passed
variables:
DOCKER_HOST: "tcp://docker-dind.gitlab-suma:2375"
AUTO_DEVOPS_BUILD_IMAGE_EXTRA_ARGS: "--network host"
include:
- template: Jobs/Build.gitlab-ci.yml
stages:
- build
build:
services:
\ No newline at end of file
FROM alpine:3
RUN apk add --update \
php7 \
php7-json \
php7-phar \
php7-mbstring \
php7-openssl \
php7-fileinfo \
php7-tokenizer \
php7-gd \
php7-dom \
php7-zip \
php7-curl \
php7-xml \
php7-xmlwriter \
php7-pdo \
&& rm -rf /var/cache/apk/*
# Get Composer 2.0.7
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/bfd95e2a4383ee9cf7c058c2df29d7acb5f86d77/web/installer -O - -q | php -- --install-dir=/usr/bin --filename=composer --version=2.0.7 --quit
\ No newline at end of file
# Composer image
This projects creates a composer Image and stores it in the Container Registry to be used by our projects. It installs commonly used php extensions.
Cache is stored under `$HOME/.composer`. Be sure to use it.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment