File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ ARG APAMA_IMAGE=public.ecr.aws/apama/apama-builder
3
3
FROM ${APAMA_IMAGE}:${APAMA_VERSION}
4
4
5
5
USER root
6
- RUN apt update && apt install git tar -y && apt clean
6
+ ARG ADDITIONAL_PACKAGES=
7
+ RUN apt update && apt install git tar ${ADDITIONAL_PACKAGES} -y && apt clean
7
8
8
9
RUN mkdir "/workspaces" && chown -R apama.apama "/workspaces"
9
10
@@ -23,6 +24,8 @@ RUN ln -s ${APAMA_WORK}/apama-analytics-builder-block-sdk /apama-analytics-build
23
24
&& ln -s ${APAMA_WORK}/apama-eplapps-tools /apama-eplapps-tools
24
25
25
26
USER apama
27
+ ENV ANALYTICS_BUILDER_SDK=${APAMA_WORK}/apama-analytics-builder-block-sdk
28
+ ENV PATH="${APAMA_WORK}/apama-eplapps-tools/scripts:${APAMA_WORK}/apama-analytics-builder-block-sdk:${PATH}"
26
29
WORKDIR "/workspaces"
27
30
28
31
ENV SHELL=/bin/bash
Original file line number Diff line number Diff line change 2
2
"name" : " cumulocity-streaming-analytics-development" ,
3
3
"build" : {
4
4
"dockerfile" : " Dockerfile" ,
5
- "args" : {
5
+ "args" : {
6
6
"APAMA_IMAGE" : " public.ecr.aws/apama/apama-builder" ,
7
7
"APAMA_VERSION" : " latest" ,
8
8
"APAMA_ANALYTICS_BUILDER_SDK_BRANCH" : " main" ,
9
- "APAMA_EPLAPPS_TOOLS_BRANCH" : " main"
9
+ "APAMA_EPLAPPS_TOOLS_BRANCH" : " main" ,
10
+ "ADDITIONAL_PACKAGES" : " "
10
11
}
11
12
},
12
13
"customizations" : {
17
18
]
18
19
}
19
20
},
20
- "forwardPorts" : [15904 ],
21
+ "forwardPorts" : [
22
+ 15904
23
+ ],
21
24
"overrideCommand" : true ,
22
25
"remoteUser" : " apama" ,
23
26
"containerUser" : " apama"
24
- }
27
+ }
You can’t perform that action at this time.
0 commit comments