mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-03-22 01:41:57 +00:00
12 lines
337 B
Docker
12 lines
337 B
Docker
ARG BASE_IMAGE
|
|
FROM ${BASE_IMAGE}
|
|
|
|
ARG PKG_DIR
|
|
ARG OS_DIR
|
|
|
|
COPY pkg/$OS_DIR/rpmbuild rpmbuild
|
|
COPY pkg/$OS_DIR/skel/ rpmbuild/BUILDROOT/$PKG_DIR/
|
|
RUN mkdir -p rpmbuild/BUILDROOT/$PKG_DIR/usr/lib/firezone
|
|
RUN rsync -az _build/prod/rel/firezone/* rpmbuild/BUILDROOT/$PKG_DIR/usr/lib/firezone/
|
|
RUN rpmbuild -bb rpmbuild/SPECS/firezone.spec
|