Skip to content

Commit 74f3ab3

Browse files
authored
Add libaio to images created in support of ADR tool (#139)
1 parent af1dd74 commit 74f3ab3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

imagetool/src/main/resources/docker-files/Create_Image.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ LABEL com.oracle.weblogic.imagetool.buildid="{{buildId}}"
99
USER root
1010

1111
{{#useYum}}
12-
RUN yum -y --downloaddir={{{tmpDir}}} install gzip tar unzip \
12+
RUN yum -y --downloaddir={{{tmpDir}}} install gzip tar unzip libaio \
1313
&& yum -y --downloaddir={{{tmpDir}}} clean all \
1414
&& rm -rf /var/cache/yum/* \
1515
&& rm -rf {{{tmpDir}}}
1616
{{/useYum}}
1717
{{#useAptGet}}
1818
RUN apt-get -y update \
1919
&& apt-get -y upgrade \
20-
&& apt-get -y install gzip tar unzip \
20+
&& apt-get -y install gzip tar unzip libaio \
2121
&& apt-get -y clean all
2222
{{/useAptGet}}
2323
{{#useApk}}

imagetool/src/main/resources/docker-files/Rebase_Image.mustache

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ COPY --from=SOURCE_IMAGE --chown={{userid}}:{{groupid}} {{domain_home}} {{domain
3434
USER root
3535

3636
{{#useYum}}
37-
RUN yum -y --downloaddir={{{tmpDir}}} install gzip tar unzip \
37+
RUN yum -y --downloaddir={{{tmpDir}}} install gzip tar unzip libaio \
3838
&& yum -y --downloaddir={{{tmpDir}}} clean all \
3939
&& rm -rf /var/cache/yum/* \
4040
&& rm -rf {{{tmpDir}}}
4141
{{/useYum}}
4242
{{#useAptGet}}
4343
RUN apt-get -y update \
4444
&& apt-get -y upgrade \
45-
&& apt-get -y install gzip tar unzip \
45+
&& apt-get -y install gzip tar unzip libaio \
4646
&& apt-get -y clean all
4747
{{/useAptGet}}
4848
{{#useApk}}

0 commit comments

Comments
 (0)