yury-sannikov / amnezia-wg-docker

An amnezia-wg Docker builds
94 stars 15 forks source link

FIx Submodules, Dokerfile and Makefile #4

Open dips3095 opened 2 months ago

dips3095 commented 2 months ago

Hello, could you please fix your makefile and instructions and dokerfile? Submodule commands dont work. but if clone submodule manully and run make build-arm7, it fails on COPY command COPY amnezia-wg/amneziawg-go /usr/bin/amneziawg-go that cant find this Path

vitaly-zverev commented 2 months ago

Hello, could you please fix your makefile and instructions and dokerfile? Submodule commands dont work. but if clone submodule manully and run make build-arm7, it fails on COPY command COPY amnezia-wg/amneziawg-go /usr/bin/amneziawg-go that cant find this Path

JFYI,

git checkout v0.0.2 did a trick:

git clone https://github.com/yury-sannikov/amnezia-wg-docker  && \
cd amnezia-wg-docker && git checkout v0.0.2 &&  \
git submodule init && \
git submodule update && \
make build-arm7

and solve those errors