mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-22 01:22:21 +08:00
21 lines
308 B
Docker
21 lines
308 B
Docker
FROM v2fly/v2fly-core:latest
|
|
|
|
RUN apk add caddy
|
|
RUN apk add gettext
|
|
RUN apk add curl
|
|
RUN apk add jq
|
|
|
|
COPY html /root/html/
|
|
|
|
COPY config.json.tp /root/
|
|
# COPY caddy.template.conf /root/
|
|
COPY Caddyfile /root/
|
|
|
|
ADD startup.sh /startup.sh
|
|
RUN chmod +x /startup.sh
|
|
|
|
ENTRYPOINT [ "/bin/sh" ]
|
|
CMD ["/startup.sh"]
|
|
|
|
|