make maven quiet when building
Some checks failed
Deploy API / docker (ubuntu-latest, 2.44.0) (push) Failing after 1m4s

This commit is contained in:
Braydon 2024-09-08 21:02:24 -04:00
parent 3da1f61605
commit b17cf903e6
2 changed files with 2 additions and 1 deletions

@ -8,7 +8,7 @@ WORKDIR /home/container
COPY . .
# Build the jar
RUN mvn package -T2C -Dmaven.test.skip -DskipTests
RUN mvn package -T2C -q -Dmaven.test.skip -DskipTests
# Stage 2: Create the final lightweight image
FROM eclipse-temurin:17.0.11_9-jre-focal

@ -3,4 +3,5 @@ An API designed to provide real-time access to a user's Discord data.
## TODO
- [ ] Caching
- [ ] WebSockets
- [ ] User account for extra account? (about me, connections, etc)