Skip to content

Commit

Permalink
Fix dockerfile for jss-runner
Browse files Browse the repository at this point in the history
dnf5 drops support `localinstall` but just `install`.
  • Loading branch information
fmarco76 committed Jan 17, 2025
1 parent cda2642 commit 2b0724c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ FROM jss-deps AS jss-runner
COPY --from=jss-dist /root/RPMS /tmp/RPMS/

# Install JSS packages
RUN dnf localinstall -y /tmp/RPMS/* \
RUN dnf install -y /tmp/RPMS/* \
&& dnf clean all \
&& rm -rf /var/cache/dnf \
&& rm -rf /tmp/RPMS
Expand Down

0 comments on commit 2b0724c

Please sign in to comment.