-
Notifications
You must be signed in to change notification settings - Fork 39
/
Dockerfile
23 lines (18 loc) · 981 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM alpine:3.20
LABEL maintainer="M0nius <m0niusplus@gmail.com>" \
alpine-version="3.20.2" \
org.opencontainers.image.title="Docker-Warp-Socks" \
org.opencontainers.image.description="Connet to CloudFlare WARP, exposing `socks5` proxy all together." \
org.opencontainers.image.authors="M0nius <m0niusplus@gmail.com>" \
org.opencontainers.image.vendor="M0nius Acc" \
org.opencontainers.image.version="2.0.0" \
org.opencontainers.image.url="https://hub.docker.com/r/monius/docker-warp-socks" \
org.opencontainers.image.source="https://github.com/Mon-ius/Docker-Warp-Socks" \
org.opencontainers.image.base.name="docker.io/monius/docker-warp-socks"
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" | tee -a /etc/apk/repositories
RUN apk update && apk upgrade \
&& apk add --no-cache curl openssl sing-box \
&& rm -rf /var/cache/apk/*
COPY entrypoint.sh /run/entrypoint.sh
ENTRYPOINT ["/run/entrypoint.sh"]
CMD ["rws-cli"]