mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-21 13:57:49 +00:00
11 lines
210 B
Docker
11 lines
210 B
Docker
ARG PLATFORM
|
|
FROM registry.sean.farm/${PLATFORM}-builder as stage
|
|
WORKDIR /work/build
|
|
COPY . .
|
|
RUN make debian
|
|
RUN ls -ls /work
|
|
|
|
FROM scratch AS export
|
|
ARG PLATFORM
|
|
COPY --from=stage /work/*.deb ./${PLATFORM}/
|