File size: 428 Bytes
25b90af |
1 2 3 4 5 6 7 8 9 |
FROM alpine:latest
RUN apk update && apk add --no-cache curl
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN apk update && apk add --no-cache sing-box
RUN mkdir -p /etc/sing-box
RUN touch /etc/sing-box/config.json
RUN chmod 777 /etc/sing-box/config.json
#COPY main.py /etc/sing-box/main.py
CMD echo $CONFIG_TXT > /etc/sing-box/config.json && sing-box run -c /etc/sing-box/config.json |