chore: initial commit
This commit is contained in:
53
installer/Dockerfile
Normal file
53
installer/Dockerfile
Normal file
@@ -0,0 +1,53 @@
|
||||
FROM --platform=${BUILDPLATFORM} node:22-slim AS frontend
|
||||
|
||||
WORKDIR /frontend
|
||||
COPY frontend /frontend
|
||||
RUN npm install -g pnpm@10.4.1 && \
|
||||
pnpm install && \
|
||||
pnpm run build
|
||||
|
||||
|
||||
FROM eclipse-temurin:21-jdk AS build
|
||||
WORKDIR /build
|
||||
COPY . /build
|
||||
COPY --from=frontend /frontend/packages/web/dist /build/frontend/packages/web/dist
|
||||
COPY --from=frontend /frontend/packages/mobile/dist /build/frontend/packages/mobile/dist
|
||||
|
||||
RUN ./mvnw clean package -DskipTests -pl '!frontend' && \
|
||||
mkdir backend/app/target/dependency && \
|
||||
cd backend/app/target/dependency && \
|
||||
jar -xf ../*.jar
|
||||
|
||||
FROM ghcr.io/cordys-dev/cordys-base:latest
|
||||
|
||||
LABEL maintainer="FIT2CLOUD <support@fit2cloud.com>"
|
||||
|
||||
ARG MODULE=app
|
||||
ARG DEPENDENCY=/build/backend/${MODULE}/target/dependency
|
||||
|
||||
COPY --from=build ${DEPENDENCY}/BOOT-INF/lib /app/lib
|
||||
COPY --from=build ${DEPENDENCY}/META-INF /app/META-INF
|
||||
COPY --from=build ${DEPENDENCY}/BOOT-INF/classes /app
|
||||
COPY --from=build /build/backend/${MODULE}/src/main/resources/static /app/static
|
||||
COPY installer/shells /shells
|
||||
COPY installer/conf /installer/conf
|
||||
|
||||
COPY installer/mcp /app/mcp
|
||||
|
||||
ENV JAVA_CLASSPATH=/app:/app/lib/*
|
||||
ENV JAVA_MAIN_CLASS=cn.cordys.Application
|
||||
ENV AB_OFF=true
|
||||
ENV JAVA_OPTIONS="-Dfile.encoding=utf-8 -Djava.awt.headless=true --add-opens java.base/jdk.internal.loader=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED"
|
||||
|
||||
ARG CRM_VERSION=main
|
||||
ENV CRM_VERSION=${CRM_VERSION}
|
||||
|
||||
RUN echo "CRM_VERSION value during build: ${CRM_VERSION}"
|
||||
RUN echo -n "${CRM_VERSION}" > /tmp/CRM_VERSION
|
||||
|
||||
VOLUME [ "/opt/cordys" ]
|
||||
|
||||
EXPOSE 8081 8082 3306
|
||||
|
||||
RUN chmod 777 /shells/*.sh
|
||||
ENTRYPOINT ["sh", "/shells/start-all.sh"]
|
||||
Reference in New Issue
Block a user