mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
9 lines
261 B
Docker
9 lines
261 B
Docker
|
FROM ubuntu:20.04
|
||
|
|
||
|
RUN apt-get update -y && \
|
||
|
apt-get install -y --no-install-recommends \
|
||
|
git-core \
|
||
|
ca-certificates
|
||
|
RUN git clone https://github.com/qnap-dev/QDK.git
|
||
|
RUN cd /QDK && ./InstallToUbuntu.sh install
|
||
|
ENV PATH="/usr/share/QDK/bin:${PATH}"
|