You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
411 B
Docker

3 years ago
FROM debian:stable
MAINTAINER Vasyl Zakharchenko <vaszakharchenko@gmail.com>
LABEL author="Vasyl Zakharchenko"
LABEL email="vaszakharchenko@gmail.com"
LABEL name="huawei-hilink"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y nodejs npm
# Bundle APP files
RUN npm i huawei-hilink@1.1.5 -g
# Install app dependencies
ENV NPM_CONFIG_LOGLEVEL warn
CMD [ "/usr/local/bin/huawei-hilink"]