Skip unit testing for now
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0) (push) Successful in 57s

This commit is contained in:
Braydon 2024-04-08 02:43:27 -04:00
parent 38fa1fe4cb
commit bf9555674d

@ -1,8 +1,5 @@
FROM maven:3.8.5-openjdk-17-slim FROM maven:3.8.5-openjdk-17-slim
# Install OpenSSL
RUN apt-get update && apt-get install -y openssl
# Set the working directory # Set the working directory
WORKDIR /home/container WORKDIR /home/container
@ -10,7 +7,7 @@ WORKDIR /home/container
COPY . . COPY . .
# Build the app # Build the app
RUN mvn clean package RUN mvn clean package -DskipTests
# Exposting on port 80 so we can # Exposting on port 80 so we can
# access via a reverse proxy for Dokku # access via a reverse proxy for Dokku