File tree Expand file tree Collapse file tree 6 files changed +11
-8
lines changed
Expand file tree Collapse file tree 6 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 3333 with :
3434 registry_password : ${{ secrets.GITHUB_TOKEN }}
3535 build_arch : linux/amd64,linux/arm64
36+ buildfile : ./Containerfile
3637 docker_username : voxpupulibot
3738 docker_password : ${{ secrets.DOCKERHUB_BOT_ADMIN_TOKEN }}
3839 tags : |
Original file line number Diff line number Diff line change 2626 - name : Build image
2727 uses : docker/build-push-action@v6
2828 with :
29+ file : Containerfile
2930 tags : ' ci/test:${{ github.event.number }}'
3031 push : false
3132
Original file line number Diff line number Diff line change 2424 - name : Build local container
2525 uses : docker/build-push-action@v6
2626 with :
27+ file : Containerfile
2728 tags : ' ci/test:latest'
2829 push : false
2930
Original file line number Diff line number Diff line change @@ -16,16 +16,16 @@ LABEL org.label-schema.maintainer="Voxpupuli Team <voxpupuli@groups.io>" \
1616 org.label-schema.license="AGPL-3.0-or-later" \
1717 org.label-schema.vcs-url="https://github.com/voxpupuli/container-commitlint" \
1818 org.label-schema.schema-version="1.0" \
19- org.label-schema.dockerfile="/Dockerfile "
19+ org.label-schema.dockerfile="/Containerfile "
2020
21- COPY Dockerfile /
22- COPY docker -entrypoint.sh /
23- COPY docker -entrypoint.d /docker -entrypoint.d
21+ COPY Containerfile /
22+ COPY container -entrypoint.sh /
23+ COPY container -entrypoint.d /container -entrypoint.d
2424COPY --from=build /npm /npm
2525
2626RUN apk update && apk upgrade \
2727 && apk add --no-cache --update bash git \
28- && chmod +x /docker -entrypoint.sh \
28+ && chmod +x /container -entrypoint.sh \
2929 # fix ENOGITREPO Not running from a git repository.
3030 && git config --global --add safe.directory '*'
3131
@@ -34,5 +34,5 @@ WORKDIR /data
3434ENV PATH="$PATH:/npm/node_modules/.bin"
3535ENV NODE_OPTIONS="--use-openssl-ca"
3636
37- ENTRYPOINT [ "/docker -entrypoint.sh" ]
37+ ENTRYPOINT [ "/container -entrypoint.sh" ]
3838CMD [ "--last" ]
File renamed without changes.
Original file line number Diff line number Diff line change 33
44set -e
55
6- if [ -d /docker -entrypoint.d/ ]; then
7- find /docker -entrypoint.d/ -type f -name " *.sh" \
6+ if [ -d /container -entrypoint.d/ ]; then
7+ find /container -entrypoint.d/ -type f -name " *.sh" \
88 -exec echo Running {} \; -exec bash {} \;
99fi
1010
You can’t perform that action at this time.
0 commit comments