tailscale/release/dist/qnap/files/scripts/Dockerfile.qpkg

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}"