Skip to content
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
4 changes: 4 additions & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ ARG SAMBACC_VER=my-cool-branch
ARG SAMBACC_REPO=https://github.com/example-user/sambacc
RUN SAMBACC_DISTNAME=latest \
/usr/local/bin/build.sh ${SAMBACC_VER} ${SAMBACC_REPO}
# create yum/dnf repo for temp. packages (file uses paths in dest container)
RUN dnf install -y /usr/bin/createrepo_c \
&& createrepo_c /srv/dist/latest \
&& echo -e '[sambacc]\nbaseurl=file:///tmp/sambacc-dist-latest\nenabled=1\ngpgcheck=0\n' > /srv/dist/latest/sambacc.repo
# --- end new stuff ---

FROM registry.fedoraproject.org/fedora:38
Expand Down