Skip to content

Commit

Permalink
Fix filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
samhclark authored Aug 13, 2024
1 parent 38c40f7 commit e683b72
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ COPY checksums /tmp/checksums

ADD https://desktop.docker.com/linux/main/amd64/160616/docker-desktop-x86_64.rpm /tmp/docker-desktop-x86_64.rpm

RUN sha256sum -c checksums \
RUN cd /tmp && sha256sum -c checksums \
&& rpm-ostree ex rebuild \
&& rpm-ostree install --cache-only /tmp/docker-desktop-x86_64.rpm \
&& rm -f /tmp/docker-desktop-x86_64.rpm
&& rm -f /tmp/checksums \
&& rm -f /tmp/docker-desktop-x86_64.rpm \
&& systemctl enable rpm-ostreed-automatic.timer \
&& rpm-ostree cleanup -m \
&& ostree container commit

0 comments on commit e683b72

Please sign in to comment.