mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-26 00:42:46 +00:00
Add dockerfile for shadowmire
Some checks are pending
docker-images / multi (., tunasync-scripts) (push) Waiting to run
docker-images / multi (bandersnatch) (push) Waiting to run
docker-images / multi (dockerfiles/rubygems, rubygems-mirror) (push) Waiting to run
docker-images / multi (ftpsync) (push) Waiting to run
docker-images / multi (nix-channels) (push) Waiting to run
docker-images / multi (pub-mirror) (push) Waiting to run
docker-images / multi (rustup-mirror) (push) Waiting to run
docker-images / multi (shadowmire) (push) Waiting to run
Some checks are pending
docker-images / multi (., tunasync-scripts) (push) Waiting to run
docker-images / multi (bandersnatch) (push) Waiting to run
docker-images / multi (dockerfiles/rubygems, rubygems-mirror) (push) Waiting to run
docker-images / multi (ftpsync) (push) Waiting to run
docker-images / multi (nix-channels) (push) Waiting to run
docker-images / multi (pub-mirror) (push) Waiting to run
docker-images / multi (rustup-mirror) (push) Waiting to run
docker-images / multi (shadowmire) (push) Waiting to run
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
parent
ccb33f96b5
commit
ec2e6611d0
|
|
@ -21,6 +21,7 @@ jobs:
|
|||
- nix-channels
|
||||
- pub-mirror
|
||||
- rustup-mirror
|
||||
- shadowmire
|
||||
# - freighter
|
||||
include:
|
||||
- image: tunasync-scripts
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Reference in New Issue