Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pyyaml for management of docker-compose yaml files #1890

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions packages/os/umbrelos.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ RUN systemctl enable acpid
RUN apt-get install --yes network-manager systemd-timesyncd openssh-server

# Install essential system utilities
RUN apt-get install --yes sudo nano vim less man iproute2 iputils-ping curl wget ca-certificates dmidecode usbutils avahi-utils
RUN apt-get install --yes sudo nano vim less man iproute2 iputils-ping curl wget ca-certificates dmidecode usbutils avahi-utils python3-yaml

# Add Umbrel user
RUN adduser --gecos "" --disabled-password umbrel
Expand All @@ -101,7 +101,7 @@ RUN usermod -aG sudo umbrel
# and need to re-run that step every time we change umbreld we just manually install all those packages here.
# It makes OS rebuilds way quicker. We should remove this at some point in the future to ensure that umbreld
# is the single source of truth for OS provisioning.
RUN apt-get install --yes network-manager python3 fswatch jq rsync curl git gettext-base python3 gnupg avahi-daemon avahi-discover libnss-mdns
RUN apt-get install --yes network-manager python3 fswatch jq rsync curl git gettext-base gnupg avahi-daemon avahi-discover libnss-mdns

# Preload images
RUN sudo apt-get install --yes skopeo
Expand Down
Loading