Some checks failed
Build container image / Build and push image (pull_request) Failing after 4m46s
20 lines
406 B
Bash
Executable File
20 lines
406 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ouex pipefail
|
|
|
|
# copy key
|
|
mkdir -p /etc/pki/containers
|
|
cp /tmp/keys/hydros.pub /etc/pki/containers
|
|
|
|
# add image info
|
|
/ctx/addimageinfo.sh
|
|
|
|
# copy system files
|
|
cp -r /tmp/sys_files/* /
|
|
|
|
# Install oh my zsh
|
|
git clone --depth 1 https://github.com/ohmyzsh/ohmyzsh.git /usr/share/ohmyzsh
|
|
|
|
# Install Nordzy-Cursors
|
|
dnf install -y /tmp/custom_rpms/nordzy-cursor-sapphire-0.0.1-1.fc43.noarch.rpm
|