dockerfile: last fix to ENV was wrong
Some checks failed
docker-images / multi (., tunasync-scripts, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (., tunasync-scripts, ubuntu-latest) (push) Has been cancelled
docker-images / multi (ftpsync, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (ftpsync, ubuntu-latest) (push) Has been cancelled
docker-images / multi (nix-channels, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (nix-channels, ubuntu-latest) (push) Has been cancelled
docker-images / multi (pub-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (pub-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (rubygems-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (rubygems-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (rustup-mirror, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (rustup-mirror, ubuntu-latest) (push) Has been cancelled
docker-images / multi (shadowmire, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (shadowmire, ubuntu-latest) (push) Has been cancelled
docker-images / multi (tsumugu, ubuntu-24.04-arm) (push) Has been cancelled
docker-images / multi (tsumugu, ubuntu-latest) (push) Has been cancelled
docker-images / merge (push) Has been cancelled

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2025-09-03 10:48:16 +08:00
parent c0b6184474
commit 4a6bccd012
No known key found for this signature in database
6 changed files with 9 additions and 9 deletions

View File

@ -18,7 +18,7 @@ RUN if [ "$(uname -m)" != "x86_64" -a "$(uname -m)" != "i386" ]; then \
RUN python3 -m pip install gsutil --break-system-packages
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
RUN mkdir -p /home/tunasync-scripts
CMD ["/bin/bash"]

View File

@ -7,6 +7,6 @@ RUN apt-get update && \
RUN git clone https://ftp-master.debian.org/git/archvsync.git/ /ftpsync/
WORKDIR /ftpsync/
ENV PATH /ftpsync/bin:${PATH}
ENV PATH=/ftpsync/bin:${PATH}
CMD ["/bin/bash"]

View File

@ -16,5 +16,5 @@ RUN mkdir -p /tmp/nix.unpack && \
ln -s /nix/store/*-nix-*/bin/* /usr/local/bin && \
rm -rf /tmp/nix.unpack
ENV HOME /tmp
ENV HOME=/tmp
CMD ["/bin/bash"]

View File

@ -14,8 +14,8 @@ RUN \
mv /usr/lib/dart-sdk /usr/lib/dart && \
chmod -R "og+rX" /usr/lib/dart
ENV DART_SDK /usr/lib/dart
ENV PATH $DART_SDK/bin:/root/.pub-cache/bin:$PATH
ENV DART_SDK=/usr/lib/dart
ENV PATH=$DART_SDK/bin:/root/.pub-cache/bin:$PATH
WORKDIR /root
RUN set -eux; \
@ -46,7 +46,7 @@ RUN set -eux; \
FROM dart-build
LABEL maintainer="HUI Yiqun <i@huiyiqun.me>"
ENV PUB_CACHE /pub-cache
ENV PUB_CACHE=/pub-cache
RUN pub global activate -s git https://github.com/tuna/pub-mirror.git

View File

@ -2,5 +2,5 @@ FROM ruby:2.7-alpine
RUN gem install rubygems-mirror
RUN apk add bash curl
# the command timeout provided by old verison of busybox was incompatible with that from coreutils and is compatible now.
ENV BUSYBOX 0
ENV HOME /tmp
ENV BUSYBOX=0
ENV HOME=/tmp

View File

@ -8,7 +8,7 @@ FROM julia:1.5
LABEL description="A community maintained docker script to set up julia mirror easily."
LABEL maintainer="Johnny Chen <johnnychen94@hotmail.com>"
ENV JULIA_DEPOT_PATH "/opt/julia"
ENV JULIA_DEPOT_PATH="/opt/julia"
RUN adduser --uid 2000 tunasync && \
julia -e 'using Pkg; pkg"add StorageMirrorServer@0.2.0"' && \