mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 20:52:43 +00:00
11 lines
209 B
Docker
11 lines
209 B
Docker
ARG PY_VERSION=3.11
|
|
|
|
FROM python:${PY_VERSION}-alpine
|
|
|
|
WORKDIR /home/scripts
|
|
|
|
RUN apk add --update --no-cache --virtual .build-deps bash
|
|
RUN pip3 install requests tqdm click
|
|
COPY shadowmire.py .
|
|
CMD /bin/bash
|