Fixed the docker secret
All checks were successful
Production deployment / Build (push) Successful in 2m10s
Production deployment / Deploying (push) Successful in 8s

This commit was merged in pull request #2.
This commit is contained in:
2023-09-09 23:15:55 +02:00
parent b98bb0a634
commit faf61e2b3b
2 changed files with 7 additions and 7 deletions

View File

@@ -1,9 +1,9 @@
FROM openjdk:18-ea-jdk-slim-bullseye AS builder
FROM public.ecr.aws/docker/library/eclipse-temurin:20.0.2_9-jdk AS builder
WORKDIR /app
COPY . /app
RUN ./gradlew shadowJar
FROM openjdk:18-ea-slim-bullseye AS runner
FROM public.ecr.aws/docker/library/eclipse-temurin:20.0.2_9-jre AS runner
LABEL authors="skydust"
WORKDIR /app