mirror of
https://github.com/woodchen-ink/clash-and-dashboard.git
synced 2025-07-18 05:51:56 +08:00
10 lines
155 B
Docker
10 lines
155 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
|
|
|
|
CMD nginx && /clash |