Skip to content

Commit ec2e661

Browse files
committed
Add dockerfile for shadowmire
Signed-off-by: Shengqi Chen <[email protected]>
1 parent ccb33f9 commit ec2e661

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/docker-images.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- nix-channels
2222
- pub-mirror
2323
- rustup-mirror
24+
- shadowmire
2425
# - freighter
2526
include:
2627
- image: tunasync-scripts

dockerfiles/shadowmire/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
ARG PY_VERSION=3.11
2+
3+
FROM python:${PY_VERSION}-alpine
4+
5+
WORKDIR /home/scripts
6+
7+
RUN pip3 install requests tqdm click
8+
COPY shadowmire.py .
9+
CMD /bin/bash

0 commit comments

Comments
 (0)