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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
UNL ITS
docker-ci
Merge requests
!1
WIP: Static code analysis on xls branch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
WIP: Static code analysis on xls branch
static-code-analysis-on-xls-branch
into
working-copy
Overview
1
Commits
13
Pipelines
13
Changes
10
Closed
Raul Barreras
requested to merge
static-code-analysis-on-xls-branch
into
working-copy
6 years ago
Overview
1
Commits
13
Pipelines
13
Changes
10
Expand
Validate:
Pass all the tests
Don't left dangling images
The CI's test stage can use all the containers
Check containers with Tenable
Edited
6 years ago
by
Raul Barreras
0
0
Merge request reports
Compare
working-copy
version 10
5278cfd5
6 years ago
version 9
66857434
6 years ago
version 8
3ab0e1ec
6 years ago
version 7
bb43e750
6 years ago
version 6
612f856f
6 years ago
version 5
612f856f
6 years ago
version 4
2142eb9d
6 years ago
version 3
da90092f
6 years ago
version 2
0d8c50fb
6 years ago
version 1
edefe242
6 years ago
working-copy (base)
and
latest version
latest version
0f8d2665
13 commits,
6 years ago
version 10
5278cfd5
12 commits,
6 years ago
version 9
66857434
10 commits,
6 years ago
version 8
3ab0e1ec
9 commits,
6 years ago
version 7
bb43e750
8 commits,
6 years ago
version 6
612f856f
7 commits,
6 years ago
version 5
612f856f
12 commits,
6 years ago
version 4
2142eb9d
11 commits,
6 years ago
version 3
da90092f
10 commits,
6 years ago
version 2
0d8c50fb
9 commits,
6 years ago
version 1
edefe242
8 commits,
6 years ago
10 files
+
224
−
21
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
magento2-unit-test/latest/Dockerfile
+
13
−
0
Options
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
Loading