16 lines
299 B
Docker
16 lines
299 B
Docker
FROM node:16
|
|
MAINTAINER Scavin <scavin@appinn.com>
|
|
|
|
ENV LANG C.UTF-8
|
|
WORKDIR /ws-scrcpy
|
|
|
|
RUN npm install -g node-gyp
|
|
RUN apt update;apt install android-tools-adb -y
|
|
RUN git clone https://github.com/NetrisTV/ws-scrcpy.git .
|
|
RUN npm install
|
|
RUN npm run dist
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["node","dist/index.js"]
|