Skip to content

Commit 8379e9b

Browse files
committed
fix crt issue by installing ca-certificates earlier
1 parent df3ccb2 commit 8379e9b

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ FROM ubuntu:22.04
33
ENV 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)
1114
RUN apt install -y \
12-
ca-certificates \
1315
libusb-1.0-0 \
1416
libhidapi-libusb0 \
1517
fuse \

0 commit comments

Comments
 (0)