You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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}" |