File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,13 +3,15 @@ FROM ubuntu:22.04
33ENV DEBIAN_FRONTEND=noninteractive
44
55# Download OpenRGB 1.0rc1 AppImage
6- RUN apt-get update && apt-get install -y curl && \
7- curl -L https://openrgb.org/releases/release_candidate_1.0rc1/OpenRGB_1.0rc1_x86_64_1fbacde.AppImage -o /usr/local/bin/OpenRGB.AppImage && \
6+ RUN apt-get -o Acquire::ForceIPv4=true update && \
7+ apt-get install -y --no-install-recommends curl ca-certificates && \
8+ curl -L --retry 5 --retry-delay 3 \
9+ https://openrgb.org/releases/release_candidate_1.0rc1/OpenRGB_1.0rc1_x86_64_1fbacde.AppImage \
10+ -o /usr/local/bin/OpenRGB.AppImage && \
811 chmod +x /usr/local/bin/OpenRGB.AppImage
912
1013# Install all needed dependencies for OpenRGB AppImage CLI (no GUI required)
1114RUN apt install -y \
12- ca-certificates \
1315 libusb-1.0-0 \
1416 libhidapi-libusb0 \
1517 fuse \
You can’t perform that action at this time.
0 commit comments