jb-ssg-site/Dockerfile
Jesse Brault 8240170ed8
All checks were successful
Jb-ssg-site CI Pipeline / ci (push) Successful in 2m18s
Update Dockerfile to JDK 25.
2025-11-08 17:24:44 -06:00

17 lines
452 B
Docker

FROM eclipse-temurin:25 AS build
LABEL authors="jessebrault"
WORKDIR /jb-ssg-site/
COPY . .
RUN ./gradlew createSsgBinScript && \
bin/ssg build -g && \
./gradlew installServerDist
FROM eclipse-temurin:25
LABEL authors="jessebrault"
WORKDIR /jb-ssg-site
COPY --from=build /jb-ssg-site/dist/ dist/
COPY --from=build /jb-ssg-site/static/ static/
COPY --from=build /jb-ssg-site/build/install/jb-ssg-site-server/ .
EXPOSE 8080
CMD ["bin/JbServer"]