Create Dockerfile
This commit is contained in:
parent
314d508678
commit
151130c142
15
Dockerfile
Normal file
15
Dockerfile
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
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"]
|
||||||
Loading…
Reference in New Issue
Block a user