File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff 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
5959COPY --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
6364VOLUME /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
9495COPY --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
98103VOLUME /opt/engine/appdata
You can’t perform that action at this time.
0 commit comments