mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 05:51:56 +08:00
11 lines
193 B
Docker
11 lines
193 B
Docker
FROM dreamacro/clash:v1.16.0
|
|
|
|
EXPOSE 8080
|
|
|
|
RUN apk update && apk add nginx
|
|
|
|
COPY ./dist/ /dashboard
|
|
COPY ./build/nginx.conf /etc/nginx
|
|
COPY ./build/start.sh /
|
|
|
|
ENTRYPOINT [ "sh", "/start.sh" ] |