mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
11 lines
313 B
Docker
11 lines
313 B
Docker
FROM alpine:latest AS builder
|
|
WORKDIR /
|
|
COPY ./install/docker/docker_helper.sh ./docker_helper.sh
|
|
COPY ./install/docker/iptables.sh ./iptables.sh
|
|
COPY ./install/docker/ip6tables.sh ./ip6tables.sh
|
|
RUN sh -c "$(cat ./docker_helper.sh)"
|
|
RUN rm ./docker_helper.sh
|
|
EXPOSE 2017
|
|
VOLUME /etc/v2raya
|
|
ENTRYPOINT ["v2raya"]
|