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

docs(README): update installation #46

Merged
merged 1 commit into from
Jan 4, 2025
Merged
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
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ Includes systemd timers and services for auto update

# Installation

This will be in the [ublue-os/staging COPR](https://copr.fedorainfracloud.org/coprs/ublue-os/staging/), until then you can install from Containerfile:
```dockerfile
COPY --from=ghcr.io/ublue-os/uupd:{FEDORA_MAJOR_VERSION} /rpms /tmp/rpms
# You can use dnf5 to install packages on the image instead
RUN rpm-ostree install /tmp/rpms/*.rpm
This program is now in the [ublue-os/staging COPR](https://copr.fedorainfracloud.org/coprs/ublue-os/staging/)

You can install it on Fedora by running:

> **Note**
> `dnf` can be substituted for `rpm-ostree` or `dnf5`. The [dnf COPR plugin](https://dnf-plugins-core.readthedocs.io/en/latest/copr.html) must also be installed for the `dnf copr` command.

```
$ sudo dnf copr enable ublue-os/staging
$ sudo dnf install uupd
```

> **Note**
Expand Down
Loading