We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d77e40 commit 2b0e483Copy full SHA for 2b0e483
Dockerfile
@@ -1,10 +1,10 @@
1
-# Pull base image.
2
FROM jlesage/baseimage-gui:ubuntu-20.04
3
4
ENV ENABLE_CJK_FONT=1
5
-RUN curl https://down.115.com/client/115pc/lin/115pc_1.0.1.6.deb -O /app/115pc_1.0.1.6.deb
+RUN add-pkg curl
+RUN curl https://down.115.com/client/115pc/lin/115pc_1.0.1.6.deb -o /tmp/115pc_1.0.1.6.deb
6
7
-RUN dpkg -i /app/115pc_1.0.1.6.deb
+RUN dpkg -i /tmp/115pc_1.0.1.6.deb
8
9
COPY startapp.sh /startapp.sh
10
README.md
@@ -0,0 +1,12 @@
+Build:
+
+```
+docker build -t 115pc-docker:1 .
+Run:
+docker run --rm -p 5800:5800 -p 5900:5900 115pc-docker:1
11
12
+ Then access `http://<ip>:5800`
0 commit comments