16 lines
274 B
Docker
Executable file
16 lines
274 B
Docker
Executable file
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:11.0.0
|
|
FROM ${BUILD_FROM}
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
RUN \
|
|
apk add --no-cache \
|
|
openresolv \
|
|
wireguard-tools
|
|
|
|
COPY rootfs /
|
|
|
|
ARG BUILD_ARCH
|
|
ARG BUILD_DATE
|
|
ARG BUILD_REF
|
|
ARG BUILD_VERSION
|