Skip to content

Commit 549a1e3

Browse files
Don't do fancy docker stuff in CI/CD
Just do plain progress, which is easier to read there.
1 parent 7c19b0d commit 549a1e3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v4
2525
- name: Build whole Dockerfile
26-
run: docker build --target release --tag test-efspjava-image .
26+
run: docker build --progress plain --target release --tag test-efspjava-image .

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ COPY TylerEcf5 /app/TylerEcf5/
99
COPY TylerEfmClient /app/TylerEfmClient/
1010
COPY proxyserver/pom.xml proxyserver/enunciate.xml /app/proxyserver/
1111
# Install all of the maven packages, so we don't have to every time we change code
12-
RUN mvn -f /app/pom.xml -DskipTests clean dependency:resolve dependency:go-offline compile
12+
RUN mvn --no-transfer-progress -f /app/pom.xml -DskipTests clean dependency:resolve dependency:go-offline compile
1313

1414
COPY proxyserver /app/proxyserver
15-
RUN mvn -f /app/pom.xml -DskipTests package -PnoDockerTests -Dbuild.revision=$CI_COMMIT_SHA && cp /app/proxyserver/target/efspserver-with-deps.jar /app/
15+
RUN mvn --no-transfer-progress -f /app/pom.xml -DskipTests package -PnoDockerTests -Dbuild.revision=$CI_COMMIT_SHA && cp /app/proxyserver/target/efspserver-with-deps.jar /app/
1616
COPY config /app/
1717
# The `[]` is an optional COPY: doesn't copy if those files aren't there (https://stackoverflow.com/a/46801962/11416267)
1818
# They are needed for Tyler API usage

0 commit comments

Comments
 (0)