mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
5 lines
158 B
Docker
5 lines
158 B
Docker
FROM busybox:latest AS builder
|
|
WORKDIR /
|
|
COPY ./web /usr/share/v2raya-web
|
|
ENTRYPOINT ["/bin/httpd", "-f", "-h", "/usr/share/v2raya-web", "-p", "80"]
|
|
EXPOSE 80 |