容器化的无污染DNS服务
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
343 B

FROM alpine as asset
COPY ./asset.sh /
RUN apk --update add --no-cache curl wget && \
sh /asset.sh
FROM alpine
COPY ./init.sh /
COPY ./overture /etc/overture/
COPY --from=asset /tmp/asset/ /usr/bin/
RUN mkdir -p /etc/cleardns && \
sed -i '$i\0\t2\t*\t*\t*\t/etc/overture/update.sh' /var/spool/cron/crontabs/root
CMD ["sh","/init.sh"]