mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 13:07:55 +00:00
8 lines
169 B
Docker
8 lines
169 B
Docker
FROM registry.sean.farm/sid-builder as stage
|
|
COPY . .
|
|
RUN /usr/bin/make -j 8
|
|
|
|
FROM scratch AS export
|
|
COPY --from=stage /zerotier-one .
|
|
COPY --from=stage /zerotier-cli .
|