Skip to content

Commit 1463415

Browse files
committed
fixes #26, fixes #59, fixes #38, fixes #37
1 parent cefb101 commit 1463415

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f e2d7a5bd22927a7e5ba2cc48414a2dd723850376
19+
git checkout -f f08bea8bc82161453bd030e936ee01a9047f2da2
2020

2121
RUN \
2222
echo "**** build frontend ****" && \
@@ -182,7 +182,7 @@ RUN \
182182
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
183183
curl -o \
184184
/tmp/selkies.tar.gz -L \
185-
"https://github.com/selkies-project/selkies/archive/e2d7a5bd22927a7e5ba2cc48414a2dd723850376.tar.gz" && \
185+
"https://github.com/selkies-project/selkies/archive/f08bea8bc82161453bd030e936ee01a9047f2da2.tar.gz" && \
186186
cd /tmp && \
187187
tar xf selkies.tar.gz && \
188188
cd selkies-* && \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN \
1616
https://github.com/selkies-project/selkies.git \
1717
/src && \
1818
cd /src && \
19-
git checkout -f e2d7a5bd22927a7e5ba2cc48414a2dd723850376
19+
git checkout -f f08bea8bc82161453bd030e936ee01a9047f2da2
2020

2121
RUN \
2222
echo "**** build frontend ****" && \
@@ -180,7 +180,7 @@ RUN \
180180
| awk '/tag_name/{print $4;exit}' FS='[""]') && \
181181
curl -o \
182182
/tmp/selkies.tar.gz -L \
183-
"https://github.com/selkies-project/selkies/archive/e2d7a5bd22927a7e5ba2cc48414a2dd723850376.tar.gz" && \
183+
"https://github.com/selkies-project/selkies/archive/f08bea8bc82161453bd030e936ee01a9047f2da2.tar.gz" && \
184184
cd /tmp && \
185185
tar xf selkies.tar.gz && \
186186
cd selkies-* && \

root/defaults/startwm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
# Enable Nvidia GPU support if detected
4-
if which nvidia-smi && [ "${DISABLE_ZINK}" == "false" ]; then
4+
if which nvidia-smi > /dev/null 2>&1 && ls -A /dev/dri 2>/dev/null && [ "${DISABLE_ZINK}" == "false" ]; then
55
export LIBGL_KOPPER_DRI2=1
66
export MESA_LOADER_DRIVER_OVERRIDE=zink
77
export GALLIUM_DRIVER=zink

0 commit comments

Comments
 (0)