File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,17 +14,19 @@ RUN apk add --no-cache wget &&\
1414 wget --input-file=lib-urls.txt --directory-prefix=production-code/daemon/lib/ &&\
1515 chmod a+x production-code/daemon/lib/*
1616
17- FROM eclipse-temurin:${EMBEDDED_JAVA_VERSION}-alpine AS temurin-stage
17+ FROM eclipse-temurin:${EMBEDDED_JAVA_VERSION} AS temurin-stage
1818
19- FROM ghcr.io/linuxserver/baseimage-alpine:edge
19+ FROM ghcr.io/linuxserver/baseimage-debian:trixie
2020
2121ENV JAVA_HOME=/opt/java/openjdk
2222COPY --from=temurin-stage $JAVA_HOME $JAVA_HOME
2323ENV PATH="${JAVA_HOME}/bin:${PATH}"
2424
25- RUN apk add --no-cache \
25+ RUN apt-get update && \
26+ apt-get install -y --no-install-recommends \
2627 nodejs \
27- npm
28+ npm && \
29+ rm -rf /var/lib/apt/lists/*
2830
2931COPY --from=builder /src/production-code/daemon/ /opt/mcsmanager/daemon/
3032
You can’t perform that action at this time.
0 commit comments