Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-ci
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNL ITS
docker-ci
Merge requests
!5
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Develop
develop
into
master
Overview
0
Commits
20
Pipelines
1
Changes
17
Merged
Develop
Alan Nelson
requested to merge
develop
into
master
Nov 6, 2018
Overview
0
Commits
20
Pipelines
1
Changes
17
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
90e5d96d
20 commits,
Nov 6, 2018
17 files
+
507
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
magento2-unit-test/latest/Dockerfile
0 → 100644
+
49
−
0
View file @ 90e5d96d
Edit in single-file editor
Open in Web IDE
FROM
centos:7
ARG
BUILD_DATE
ARG
VCS_REF
ARG
VERSION
LABEL
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="Magento Unit Tester" \
org.label-schema.description="" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vendor="University of Nebraska - Lincoln" \
org.label-schema.version=$VERSION \
org.label-schema.schema-version="1.0" \
maintainer="Alan Nelson <alan.nelson@nebraska.edu>"
# Add additional REPOs
RUN
rpm
-i
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
\
&&
rpm
-i
https://rhel7.iuscommunity.org/ius-release.rpm
# Update system and install required packages
RUN
yum update
-y
\
&&
yum
install
-y
\
unzip
\
php71u-cli
\
php71u-json
\
php71u-pdo
\
php71u-mysqlnd
\
php71u-opcache
\
php71u-xml
\
php71u-mcrypt
\
php71u-gd
\
php71u-devel
\
php71u-intl
\
php71u-mbstring
\
php71u-bcmath
\
php71u-json
\
php71u-soap
\
php71u-pecl-xdebug
\
&&
yum clean all
\
&&
rm
-rf
/var/cache/yum
# Install composer
RUN
curl
-o
/usr/local/bin/composer https://getcomposer.org/composer.phar
\
&&
chmod
755 /usr/local/bin/composer
# PHP Config file
COPY
php.ini /etc/php.d/mg2.ini
CMD
["bash"]
Loading