fixed bug in Dockerfile
All checks were successful
Build Docker Image / Docker-Build (push) Successful in 2m14s
Build Docker Image / Clean-Registry (push) Successful in 3s

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-01-04 23:09:35 +01:00
parent bdf6f19b03
commit 05c6e0c5f8

View File

@@ -8,7 +8,8 @@ RUN ./gradlew build
RUN mv *app/build/distributions/*.zip /occ.zip
FROM alpine
RUN apk update apk add bash openjdk21-jre
RUN apk update
RUN apk add bash openjdk21-jre
COPY --from=build /occ.zip /opt/occ.zip
RUN cd /opt && unzip occ.zip && mv de.srsoftware.cal.app occ && rm *.zip
WORKDIR /opt/occ