mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-25 16:32:47 +00:00
dockerfiles: retire independent shadowmire image, add comments to retired images
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
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>
This commit is contained in:
parent
084147d983
commit
657f35a527
|
|
@ -21,7 +21,7 @@ jobs:
|
||||||
- nix-channels
|
- nix-channels
|
||||||
- rubygems-mirror
|
- rubygems-mirror
|
||||||
- rustup-mirror
|
- rustup-mirror
|
||||||
- shadowmire
|
# - shadowmire
|
||||||
- tsumugu
|
- tsumugu
|
||||||
- tunasync-scripts
|
- tunasync-scripts
|
||||||
# - freighter
|
# - freighter
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,12 @@ RUN if [ "$(uname -m)" != "x86_64" -a "$(uname -m)" != "i386" ]; then \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# RUN pip3 install --upgrade pip
|
# RUN pip3 install --upgrade pip
|
||||||
# needs unpublished version of apitools, see: https://github.com/GoogleCloudPlatform/gsutil/issues/1819
|
RUN python3 -m pip install \
|
||||||
RUN python3 -m pip install gsutil https://github.com/google/apitools/archive/refs/tags/v0.5.35.zip --break-system-packages
|
# for flutter, needs unpublished version of apitools, see: https://github.com/GoogleCloudPlatform/gsutil/issues/1819
|
||||||
|
gsutil https://github.com/google/apitools/archive/refs/tags/v0.5.35.zip \
|
||||||
|
# for shadowmire
|
||||||
|
requests tqdm click \
|
||||||
|
--break-system-packages
|
||||||
|
|
||||||
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && apt-get install -y locales -qq && locale-gen
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && apt-get install -y locales -qq && locale-gen
|
||||||
ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 HOME=/tmp
|
ENV LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 LC_ALL=en_US.UTF-8 HOME=/tmp
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
# RETIRED: use shadowmire instead
|
||||||
|
|
||||||
ARG PY_VERSION=3.12
|
ARG PY_VERSION=3.12
|
||||||
|
|
||||||
FROM python:${PY_VERSION}-alpine
|
FROM python:${PY_VERSION}-alpine
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
# RETIRED: use tunasync-scripts image and pub-mirror.py instead
|
||||||
|
|
||||||
FROM debian:stable AS dart-build
|
FROM debian:stable AS dart-build
|
||||||
|
|
||||||
ARG DART_VERSION="2.12.4"
|
ARG DART_VERSION="2.12.4"
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
# RETIRED: merged into tunasync-scripts image
|
||||||
|
|
||||||
ARG PY_VERSION=3.13
|
ARG PY_VERSION=3.13
|
||||||
|
|
||||||
FROM python:${PY_VERSION}-alpine
|
FROM python:${PY_VERSION}-alpine
|
||||||
Loading…
Reference in New Issue