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

build: build base images in unconfined mode #72

Merged
merged 2 commits into from
Jan 8, 2024
Merged
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
3 changes: 2 additions & 1 deletion .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ runs:
- name: Enable podman socket
shell: bash
run: |
sudo systemctl enable --now podman.socket
sudo systemctl enable podman.socket
sudo systemctl restart podman.socket
2 changes: 1 addition & 1 deletion src/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function build_base_image {
done

echo "Building $name from $from"
${DOCKER} run --name sssd-wip-base --detach -i "$from"
${DOCKER} run --security-opt seccomp=unconfined --name sssd-wip-base --detach -i "$from"
if [ $name == 'base-ground' ]; then
base_install_python
fi
Expand Down
Loading