-
Notifications
You must be signed in to change notification settings - Fork 509
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# | ||
# conductor:server - Combined Netflix conductor server & UI | ||
# conductor:server - Combined conductor server & UI | ||
# | ||
# =========================================================================================================== | ||
# 0. Builder stage | ||
# =========================================================================================================== | ||
FROM alpine:3.18 AS builder | ||
|
||
LABEL maintainer="Netflix OSS <[email protected]>" | ||
LABEL maintainer="Orkes OSS <[email protected]>" | ||
|
||
# =========================================================================================================== | ||
# 0. Build Conductor Server | ||
|
@@ -32,7 +32,7 @@ RUN mkdir server-build | |
WORKDIR server-build | ||
RUN ls -ltr | ||
|
||
RUN git clone https://github.com/Netflix/conductor-community.git | ||
RUN git clone https://github.com/conductor-oss/conductor-community.git | ||
|
||
# Copy the project directly onto the image | ||
WORKDIR conductor-community | ||
|
@@ -50,7 +50,7 @@ RUN pwd | |
# =========================================================================================================== | ||
FROM alpine:3.18 | ||
|
||
LABEL maintainer="Netflix OSS <[email protected]>" | ||
LABEL maintainer="Orkes OSS <[email protected]>" | ||
|
||
RUN apk add openjdk17 | ||
RUN apk add nginx | ||
|