Add dockerfile for shadowmire

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2024-08-08 13:58:45 +08:00
parent ccb33f96b5
commit ec2e6611d0
No known key found for this signature in database
GPG Key ID: 6EE389C0F18AF774
2 changed files with 10 additions and 0 deletions

View File

@ -21,6 +21,7 @@ jobs:
- nix-channels - nix-channels
- pub-mirror - pub-mirror
- rustup-mirror - rustup-mirror
- shadowmire
# - freighter # - freighter
include: include:
- image: tunasync-scripts - image: tunasync-scripts

View File

@ -0,0 +1,9 @@
ARG PY_VERSION=3.11
FROM python:${PY_VERSION}-alpine
WORKDIR /home/scripts
RUN pip3 install requests tqdm click
COPY shadowmire.py .
CMD /bin/bash