diff --git a/Dockerfile-apk b/Dockerfile-apk index aab6e37..c5cbc48 100644 --- a/Dockerfile-apk +++ b/Dockerfile-apk @@ -1,10 +1,11 @@ FROM itdoginfo/openwrt-sdk-apk:09102025 ARG PKG_VERSION +ENV PKG_VERSION=${PKG_VERSION} COPY ./podkop /builder/package/feeds/utilities/podkop COPY ./luci-app-podkop /builder/package/feeds/luci/luci-app-podkop RUN make defconfig && \ - make package/podkop/compile -j4 V=s PKG_VERSION=${PKG_VERSION} && \ - make package/luci-app-podkop/compile -j4 V=s PKG_VERSION=${PKG_VERSION} \ No newline at end of file + make package/podkop/compile -j4 V=s && \ + make package/luci-app-podkop/compile -j4 V=s \ No newline at end of file