mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-21 05:02:43 +00:00
10 lines
150 B
Docker
10 lines
150 B
Docker
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
|