Skip to content

Commit

Permalink
Revert "Bail on Docker Desktop"
Browse files Browse the repository at this point in the history
This reverts commit a6418ac.
  • Loading branch information
samhclark committed Aug 18, 2024
1 parent 017dbc5 commit 0082a77
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ FROM quay.io/fedora-ostree-desktops/silverblue:40 as silverblue
COPY docker-ce.repo /etc/yum.repos.d/docker-ce.repo
COPY vscode.repo /etc/yum.repos.d/vscode.repo
COPY custom-origin.yaml /etc/rpm-ostree/origin.d/custom-origin.yaml
COPY checksums /tmp/checksums

RUN rpm-ostree ex rebuild \
ADD https://desktop.docker.com/linux/main/amd64/160616/docker-desktop-x86_64.rpm /tmp/docker-desktop-x86_64.rpm

RUN cd /tmp && sha256sum -c checksums \
&& rpm-ostree ex rebuild \
&& rpm-ostree install --cache-only /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 0082a77

Please sign in to comment.