pls work
Some checks failed
Deploy to Dokku / docker (ubuntu-latest) (push) Failing after 9s

This commit is contained in:
Lee 2024-04-29 06:42:54 +01:00
parent e754c0a5f1
commit 9140dbc838
2 changed files with 5 additions and 0 deletions

@ -21,6 +21,8 @@ jobs:
# Checkout the repo # Checkout the repo
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
fetch-depth: 0
# Deploy to Dokku # Deploy to Dokku
- name: Push to dokku - name: Push to dokku

@ -13,6 +13,9 @@ RUN mvn package -q -Dmaven.test.skip -DskipTests -T2C
# Stage 2: Create the final lightweight image # Stage 2: Create the final lightweight image
FROM eclipse-temurin:17.0.11_9-jre-focal FROM eclipse-temurin:17.0.11_9-jre-focal
# Install Git
RUN apt-get install -y git
# Set the app to be in production mode # Set the app to be in production mode
ENV ENVIRONMENT=production ENV ENVIRONMENT=production