Compare commits

...

2 commits

Author SHA1 Message Date
d4ca9336b4 ci: Switch back to previous docker password config
Some checks failed
ci/woodpecker/push/build-arm Pipeline is pending
ci/woodpecker/push/build-amd64 Pipeline failed
2023-07-16 21:49:14 +02:00
1d68948c5a container: Reduce maven output wihle building 2023-07-16 21:46:44 +02:00
2 changed files with 6 additions and 3 deletions

View file

@ -4,12 +4,11 @@ platform: linux/amd64
pipeline: pipeline:
build-bot-amd64: build-bot-amd64:
image: plugins/docker image: plugins/docker
secrets:
- source: docker_token
target: docker_password
settings: settings:
registry: git.hhhammer.de registry: git.hhhammer.de
username: ci username: ci
password:
from_secret: docker_token
dockerfile: Containerfile dockerfile: Containerfile
target: bot target: bot
repo: git.hhhammer.de/hamburghammer/flyclt-deploy repo: git.hhhammer.de/hamburghammer/flyclt-deploy

View file

@ -7,6 +7,10 @@ COPY db/pom.xml db/
COPY bot/pom.xml bot/ COPY bot/pom.xml bot/
COPY migration/pom.xml migration/ COPY migration/pom.xml migration/
COPY web/pom.xml web/ COPY web/pom.xml web/
# Adding default Maven arguments
ENV MAVEN_CLI_OPTS="--batch-mode"
# Resolve dependencies for shared libraries # Resolve dependencies for shared libraries
RUN mvn -pl db -am dependency:go-offline RUN mvn -pl db -am dependency:go-offline
# Install the shared libraries in the local Maven repo (`.m2`) # Install the shared libraries in the local Maven repo (`.m2`)