You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN wget -O- https://packages.veilid.net/gpg/veilid-packages-key.public | sudo gpg --dearmor -o /usr/share/keyrings/veilid-packages-keyring.gpg
RUN if dpkg --print-architecture | grep arm64 ; then echo "deb [arch=arm64 signed-by=/usr/share/keyrings/veilid-packages-keyring.gpg] https://packages.veilid.net/apt stable main" | sudo tee /etc/apt/sources.list.d/veilid.list; fi
RUN if dpkg --print-architecture | grep amd64 ; then echo "deb [arch=amd64 signed-by=/usr/share/keyrings/veilid-packages-keyring.gpg] https://packages.veilid.net/apt stable main" | sudo tee /etc/apt/sources.list.d/veilid.list; fi
RUN cat /etc/apt/sources.list.d/veilid.list
RUN apt update && \
apt install -y veilid-server veilid-cli
COPY entry.sh /entry.sh
RUN chown veilid /entry.sh
# sudo -u veilid veilid-server
#USER veilid
# config
VOLUME /root/.config/veilid/
# State holds the node ID etc. to persist between runs