feat: add support of maven_settings
All checks were successful
Release / release (push) Successful in 2m55s

This commit is contained in:
lucasdpt
2025-11-24 10:43:16 +01:00
parent 35fde410ec
commit 940ed22a60
3 changed files with 80 additions and 2 deletions

View File

@@ -23,6 +23,9 @@ RUN npm config set fund false && npm config set audit false \
@semantic-release/exec \
conventional-changelog-conventionalcommits
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
RUN addgroup -S ci \
&& adduser -S -G ci -h /home/ci -s /bin/bash ci \
&& mkdir -p /workspace /home/ci/.m2 \
@@ -33,6 +36,5 @@ ENV MAVEN_CONFIG=/home/ci/.m2
WORKDIR /workspace
USER ci
ENTRYPOINT ["/sbin/tini","--"]
ENTRYPOINT ["/sbin/tini","--","/usr/local/bin/entrypoint.sh"]
CMD ["/bin/bash","-lc","bash"]