mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-06-27 01:41:44 +02:00
Added docker file (Fork from PassiveLemon)
This commit is contained in:
17
docker/Dockerfile
Normal file
17
docker/Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk update && apk upgrade &&\
|
||||
apk add bash curl jq &&\
|
||||
mkdir -p /zoraxy/data/
|
||||
|
||||
VOLUME [ "/zoraxy/data/" ]
|
||||
|
||||
COPY entrypoint.sh /zoraxy/
|
||||
|
||||
RUN chmod +x /zoraxy/entrypoint.sh
|
||||
|
||||
ENV ARGS="-port=:8000 -noauth=false"
|
||||
|
||||
EXPOSE 8000
|
||||
|
||||
ENTRYPOINT ["/zoraxy/entrypoint.sh"]
|
Reference in New Issue
Block a user