diff --git a/Dockerfile-apk b/Dockerfile-apk index 72fd2cd..aab6e37 100644 --- a/Dockerfile-apk +++ b/Dockerfile-apk @@ -1,9 +1,10 @@ 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 && make package/luci-app-podkop/compile -j4 V=s \ No newline at end of file +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