File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ RUN /app/entrypoint.sh export --output /output/seeds.ndjson.gz
7
7
8
8
FROM eclipse-temurin:17 AS builder
9
9
10
- RUN apt-get update && apt-get install -y git
10
+ RUN apt-get update && apt-get install -y git unzip
11
11
12
12
RUN mkdir /opt/zen
13
13
RUN wget -O /opt/zen/zen.jar https://github.com/HealthSamurai/ftr/releases/latest/download/zen.jar
@@ -27,7 +27,9 @@ RUN cd /opt/app && java -jar /opt/zen/zen.jar zen build zenproject zen-package
27
27
28
28
RUN ls -lah /opt/app/zenproject
29
29
30
- FROM healthsamurai/aidboxone:stable
30
+ RUN mkdir /build
31
+ RUN unzip /opt/app/zenproject/zen-package.zip -d /build/aidbox-project
31
32
32
- COPY --from=builder /opt/app/zenproject/zen-package.zip /aidbox-project/zen-package.zip
33
+ FROM healthsamurai/aidboxone:stable
33
34
35
+ COPY --from=builder /build/aidbox-project /aidbox-project
Original file line number Diff line number Diff line change
1
+ AIDBOX_ZEN_PATHS=path:package-dir:/aidbox-project
2
+ AIDBOX_ZEN_ENTRYPOINT=main/box
1
3
BOX_PROJECT_GIT_TARGET__PATH=/aidbox-project
2
-
3
4
AIDBOX_ZEN_DEV_MODE=true
4
- AIDBOX_ZEN_ENTRYPOINT=main/box
5
5
AIDBOX_DEV_MODE=true
6
- AIDBOX_ZEN_PROJECT=/aidbox-project
7
6
8
7
AIDBOX_CLIENT_ID=root
9
8
AIDBOX_CLIENT_SECRET=secret
@@ -26,4 +25,5 @@ BOX_FEATURES_FTR_PULL_ENABLE=false
26
25
AIDBOX_SDC_ENABLED=false
27
26
28
27
AIDBOX_STDOUT_PRETTY=all
28
+ box_features_mapping_enable__access__control
29
29
You can’t perform that action at this time.
0 commit comments