Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Conductor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,20 @@ RUN npm run build
# ===========================================================================================================
# 0. Builder stage
# ===========================================================================================================
FROM openjdk:17-bullseye AS builder
FROM eclipse-temurin:17-jdk-jammy AS builder

ARG CONDUCTOR_VERSION

RUN apt-get update && apt-get install -y git && \
rm -rf /var/lib/apt/lists/*

RUN git clone --depth=1 -b ${CONDUCTOR_VERSION} https://github.com/conductor-oss/conductor.git /conductor

# Build the server

WORKDIR /conductor

RUN sed -i 's/^subprojects {$/ext["tomcat.version"] = "10.1.41"\n\n&/' build.gradle

RUN sed -i "s/revRedisson = '3\.13\.3'/revRedisson = '3.22.0'/" dependencies.gradle

#This will cache the downloaded gradle so repeated runs are faster
Expand Down