Illumotion commited on
Commit
4b0a758
1 Parent(s): 7361629

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -2
Dockerfile CHANGED
@@ -1,3 +1,9 @@
1
- FROM kasmweb/qbittorrent:1.14.0-rolling
2
  USER root
3
- RUN sed -i 's|-sslOnly|-disableBasicAuth|g' /dockerstartup/vnc_startup.sh && sed -i 's|require_ssl: true|require_ssl: false|g' /usr/share/kasmvnc/kasmvnc_defaults.yaml
 
 
 
 
 
 
 
1
+ FROM alpine
2
  USER root
3
+ COPY config.json /etc/xray/config.json
4
+ RUN apk update \
5
+ && apk add --no-cache ca-certificates busybox \
6
+ && busybox wget https://github.com/XTLS/Xray-core/releases/latest/download/Xray-linux-64.zip \
7
+ && busybox unzip Xray-linux-64.zip \
8
+ && busybox mv xray /usr/bin/xray
9
+ ENTRYPOINT ["xray", "-c", "/etc/xray/config.json"]