Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flaky_tests_scraper
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
flaky_tests_scraper
Commits
b4230476
Commit
b4230476
authored
1 month ago
by
znerol
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3521317
: Setup GitLab CI pipeline to build and publish container image
parent
0b7c585e
No related branches found
No related tags found
No related merge requests found
Pipeline
#483055
passed
1 month ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+7
-2
7 additions, 2 deletions
Dockerfile
with
7 additions
and
2 deletions
Dockerfile
+
7
−
2
View file @
b4230476
...
...
@@ -9,7 +9,7 @@ RUN apk update && apk add --no-cache \
tzdata
COPY
--from=docker.io/gitlab/glab:latest /usr/bin/glab /usr/bin/glab
WORKDIR
/opt/flaky
ADD
src
src
ADD
src
.
FROM
base
AS
gitgau-build
...
...
@@ -20,9 +20,14 @@ RUN make -C /src/git-gau-* prefix=/dist install-bin
FROM
base
AS
ci
COPY
--from=gitgau-build /dist /usr
ENTRYPOINT
[ \
"/usr/bin/ssh-agent", \
"/usr/lib/git-gau/docker-entry", \
"/usr/lib/git-gau/docker-entry.d" \
]
FROM
base
AS
default
ENTRYPOINT
["make"
, "-C", "src"
]
ENTRYPOINT
["make"]
CMD
["all"]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment