Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Trip committed Oct 3, 2023
1 parent 7481325 commit 0b4173e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xfce/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ WORKDIR /tmp

RUN \
dnf install -y wget && \
if [ "$TARGETARCH" = "amd64" ]; then \
if [ "$TARGETARCH" == "amd64" ]; then \
wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.x86_64.rpm; \
elif [ "$TARGETARCH" = "arm64" ]; then \
elif [ "$TARGETARCH" == "arm64" ]; then \
wget -O /tmp/openlens.rpm https://github.com/MuhammedKalkan/OpenLens/releases/download/v6.5.2-366/OpenLens-6.5.2-366.aarch64.rpm; \
else \
echo "Unsupported architecture: $TARGETARCH"; \
Expand Down

0 comments on commit 0b4173e

Please sign in to comment.