Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/diskover/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN \
echo "**** install runtime packages ****" && \
apt-get install -y --no-install-recommends \
ncurses-bin \
php8.3-cli \
php8.5-cli \
php-sqlite3 \
php-fpm \
python3-pip \
Expand Down
2 changes: 1 addition & 1 deletion apps/diskover/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ if [ -f "/config/diskover.cfg" ]; then
done
fi

exec php8.3 -S 0.0.0.0:80 -t /app/diskover-web/public
exec php8.5 -S 0.0.0.0:80 -t /app/diskover-web/public
5 changes: 3 additions & 2 deletions apps/kasm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ ENV NVIDIA_DRIVER_CAPABILITIES="compute,graphics,video,utility"
# Container setup
RUN \
echo "**** install packages ****" && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
echo "deb [arch=$TARGETARCH] https://download.docker.com/linux/ubuntu noble stable" > \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg && \
echo "deb [arch=$TARGETARCH signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu noble stable" > \
/etc/apt/sources.list.d/docker.list && \
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg \
&& curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
Expand All @@ -27,6 +27,7 @@ RUN \
echo "Package: docker-ce docker-ce-cli docker-ce-rootless-extras \
Pin: version 5:28.* \
Pin-Priority: 1001" > /etc/apt/preferences.d/docker && \
apt-get update && \
apt-get install -y --no-install-recommends \
btrfs-progs \
build-essential \
Expand Down
Loading