mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 04:12:42 +00:00
14 lines
273 B
Docker
14 lines
273 B
Docker
ARG PY_VERSION=3.12
|
|
|
|
FROM python:${PY_VERSION}-alpine
|
|
|
|
RUN apk add --update --no-cache --virtual .build-deps \
|
|
g++ \
|
|
bash \
|
|
python3-dev \
|
|
libxml2 \
|
|
libxml2-dev && \
|
|
apk add libxslt-dev
|
|
RUN pip3 install bandersnatch
|
|
CMD /bin/bash
|