11 lines
177 B
Docker
11 lines
177 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
# Install vhclient
|
|
ARG BUILD_ARCH
|
|
ARG CACHEBUST=1
|
|
RUN echo $CACHEBUST && /usr/bin/getvhclient $BUILD_ARCH
|