mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-25 16:32:47 +00:00
Some checks are pending
docker-images / multi (., tunasync-scripts, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (., tunasync-scripts, ubuntu-latest) (push) Waiting to run
docker-images / multi (ftpsync, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (ftpsync, ubuntu-latest) (push) Waiting to run
docker-images / multi (nix-channels, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (nix-channels, ubuntu-latest) (push) Waiting to run
docker-images / multi (rubygems-mirror, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (rubygems-mirror, ubuntu-latest) (push) Waiting to run
docker-images / multi (rustup-mirror, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (rustup-mirror, ubuntu-latest) (push) Waiting to run
docker-images / multi (tsumugu, ubuntu-24.04-arm) (push) Waiting to run
docker-images / multi (tsumugu, ubuntu-latest) (push) Waiting to run
docker-images / merge (push) Blocked by required conditions
Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
16 lines
308 B
Docker
16 lines
308 B
Docker
# RETIRED: use shadowmire instead
|
|
|
|
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
|