mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-04-20 20:52:43 +00:00
12 lines
242 B
Docker
12 lines
242 B
Docker
FROM python:3.9-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
|