Skip to content

Commit aa1b510

Browse files
authored
fix missing fallocate (#645)
1 parent c485a23 commit aa1b510

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ USER root
1313
COPY . /app
1414
WORKDIR /app
1515

16-
# install fallocate for use by claire tests
1716
RUN microdnf -y --setopt=install_weak_deps=0 --setopt=tsflags=nodocs install \
18-
jq util-linux \
17+
jq \
1918
&& microdnf clean all -y
2019

2120
ENV MAVEN_OPTS="-XX:+TieredCompilation -XX:TieredStopAtLevel=1 -Dmaven.repo.local=/app/.m2 -Dmaven.artifact.threads=42"
@@ -46,6 +45,11 @@ LABEL name="Red Hat Messaging QE - Java CLI Image" \
4645

4746
USER root
4847

48+
# install fallocate for use by claire tests
49+
RUN microdnf -y --setopt=install_weak_deps=0 --setopt=tsflags=nodocs install \
50+
util-linux \
51+
&& microdnf clean all -y
52+
4953
RUN mkdir /licenses
5054
COPY ./LICENSE /licenses/LICENSE.txt
5155
COPY ./image/bin /usr/local/bin

0 commit comments

Comments
 (0)