Skip to content

Commit 8f656d4

Browse files
kpalangjonbartels
authored andcommitted
Add "unzip" to images
Signed-off-by: Kaur Palang <[email protected]>
1 parent 7761bb4 commit 8f656d4

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

deploy/Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ LABEL "org.opencontainers.image.authors"="The Open Integration Engine Project an
5757
"org.opencontainers.image.version"="${OIE_RELEASE_VERSION?:}"
5858

5959
COPY --from=downloader /opt/engine /opt/engine
60-
RUN apk add --no-cache bash \
60+
61+
RUN apk add --no-cache bash unzip \
6162
&& adduser -D -H -u $UID engine engine
6263

6364
VOLUME /opt/engine/appdata
@@ -92,7 +93,11 @@ LABEL "org.opencontainers.image.authors"="The Open Integration Engine Project an
9293
"org.opencontainers.image.version"="${OIE_RELEASE_VERSION?:}"
9394

9495
COPY --from=downloader /opt/engine /opt/engine
95-
RUN groupadd --gid ${GID} engine \
96+
97+
RUN apt-get update \
98+
&& apt-get install -y unzip \
99+
&& rm -rf /var/lib/apt/lists/* \
100+
&& groupadd --gid ${GID} engine \
96101
&& useradd -u ${UID} -g ${GID} -M engine
97102

98103
VOLUME /opt/engine/appdata

0 commit comments

Comments
 (0)