2024-01-25 11:11:46 +08:00

11 lines
220 B
Docker

FROM --platform=$TARGETPLATFORM 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" ]