Downgrade to J17 + sample kubernetes deployment

This commit is contained in:
2025-01-09 17:18:03 +01:00
parent 44e054397b
commit 299e20cd73
7 changed files with 115 additions and 11 deletions

View File

@@ -1,12 +1,12 @@
FROM eclipse-temurin:22
COPY --from=golang:1.22-bookworm /usr/local/go/ /usr/local/go/
ENV PATH="/root/go/bin:/usr/local/go/bin:${PATH}"
RUN go install github.com/nothub/mrpack-install@v0.16.10
VOLUME /server
COPY entrypoint.sh /entrypoint.sh
FROM eclipse-temurin:17
COPY --from=golang:1.22-bookworm /usr/local/go/ /usr/local/go/
ENV PATH="/root/go/bin:/usr/local/go/bin:${PATH}"
RUN go install github.com/nothub/mrpack-install@v0.16.10
VOLUME /server
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]