Skip to content
Snippets Groups Projects
Commit b4230476 authored by znerol's avatar znerol
Browse files

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
......@@ -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"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment