Skip to content

Commit

Permalink
fixed a bucng of things in x server
Browse files Browse the repository at this point in the history
  • Loading branch information
LaneaLucy committed Jan 23, 2024
1 parent ddcfe59 commit 315c071
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions xserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,20 @@ FROM $BUILD_FROM
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Setup base
RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends \
build-essential \
git \
python3-dev \
python3-gi \
python3-gst-1.0 \
wget curl

RUN wget https://bootstrap.pypa.io/get-pip.py && python3 get-pip.py --break-system-packages



RUN python3 -m pip install --break-system-packages mopidy
RUN python3 -m pip install --break-system-packages streamlink

RUN apt-get update && \
DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends xorg firefox-esr pulseaudio ffmpeg
RUN apt-get update && DEBIAN_FRONTEND='noninteractive' apt-get install -y --no-install-recommends \
xorg firefox-esr pulseaudio ffmpeg

# Copy root filesystem
COPY rootfs /
Expand Down
2 changes: 1 addition & 1 deletion xserver/config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# https://developers.home-assistant.io/docs/add-ons/configuration#add-on-config

Check warning on line 1 in xserver/config.yaml

View workflow job for this annotation

GitHub Actions / Lint add-on xserver

'full_access' consider using other options instead, like 'devices'

Check warning on line 1 in xserver/config.yaml

View workflow job for this annotation

GitHub Actions / Lint add-on xserver

'map' contains the 'config' folder, which has been replaced by 'homeassistant_config'. See: https://developers.home-assistant.io/blog/2023/11/06/public-addon-config
name: xserver
version: "0.1.14"
version: "0.1.17"
slug: xserver
description: X Server
url: "https://github.com/LaneaLucy/haos-addons/tree/main/xserver"
Expand Down

0 comments on commit 315c071

Please sign in to comment.