mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-02-06 17:20:17 +00:00
10 lines
212 B
Docker
10 lines
212 B
Docker
ARG BASE_IMAGE
|
|
FROM ${BASE_IMAGE}
|
|
|
|
ARG PKG_DIR
|
|
|
|
COPY pkg/$PKG_DIR $PKG_DIR
|
|
RUN mkdir -p $PKG_DIR/usr/lib/firezone
|
|
RUN rsync -az _build/prod/rel/firezone/* $PKG_DIR/usr/lib/firezone/
|
|
RUN dpkg-deb --build $PKG_DIR
|