mirror of
https://github.com/lush2020/edgetunnel.git
synced 2026-03-22 01:22:21 +08:00
17 lines
223 B
Docker
17 lines
223 B
Docker
FROM v2fly/v2fly-core:latest
|
|
|
|
RUN apk add nginx
|
|
RUN apk add gettext
|
|
|
|
COPY html /root/html/
|
|
|
|
COPY config.json.tp /root/
|
|
COPY nginx.template.conf /root/
|
|
|
|
ADD startup.sh /startup.sh
|
|
RUN chmod +x /startup.sh
|
|
|
|
CMD /startup.sh
|
|
|
|
|